-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "type-qs",
"version": "2.1.2",
"main": "index.js",
"author": "Jimmy.Harding",
"description": "the purpose of this project is transforming search strings to types you need",
"scripts": {
"clear": "rm -rf ./dist & rm -rf ./es",
"base-build": "webpack --config ./webpack.config.js --env.mode=production",
"es-build": "babel src --extensions '.ts' --no-comments --config-file ./babel.es.config.js --out-dir es",
"es-d": "cp ./index.d.ts ./es/index.d.ts & cp ./libs/index.d.ts ./es/libs/index.d.ts",
"build": "mkdir ./es & mkdir ./es/libs & npm run es-d & npm run es-build & npm run base-build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/filefoxper/type-qs"
},
"files": [
"dist",
"es",
"libs",
"index.js",
"index.d.ts"
],
"keywords": [
"qs",
"url-parser",
"search",
"location.search",
"query",
"query-parser",
"type",
"template",
"typescript",
"browser"
],
"dependencies": {
"@types/qs": "^6.9.6",
"qs": "^6.10.1"
},
"peerDependencies": {
"@types/qs": ">=6.9.6",
"qs": ">=6.9.6"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "7.2.2",
"@babel/runtime": "7.3.0",
"@babel/preset-env": "^7.5.2",
"@babel/preset-typescript": "^7.3.3",
"@babel/plugin-proposal-async-generator-functions": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-function-bind": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.3.1",
"@babel/plugin-proposal-optional-catch-binding": "7.2.0",
"@babel/plugin-proposal-optional-chaining": "7.2.0",
"@babel/plugin-proposal-pipeline-operator": "7.3.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@types/jest": "^23.3.12",
"@types/qs": "^6.9.3",
"core-js": "^3.13.1",
"qs": "^6.9.3",
"jest": "^26.0.1",
"typescript": "^3.8.3",
"babel-eslint": "^9.0.0",
"eslint": "^5.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"ts-jest": "^24.0.2",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.4.0",
"webpack-cli": "^3.3.5",
"webpack": "^4.35.3",
"happypack": "^5.0.1",
"less": "^3.9.0",
"babel-loader": "^8.0.6",
"ts-loader": "^6.0.4",
"file-loader": "^4.0.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"tsconfig-paths-webpack-plugin": "^3.2.0"
},
"engines": {
"node": ">=8.0.0"
}
}