-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.91 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
{
"name": "parse-route-data",
"version": "3.5.11",
"description": "Parse the HTTP data and check for validating",
"main": "umd/lib-min.js",
"files": [
"umd/**/*"
],
"author": "luctst",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://www.github.com/luctst/parse-route-data"
},
"bugs": {
"url": "https://www.github.com/luctst/parse-route-data/issues"
},
"homepage": "https://www.github.com/luctst/parse-route-data",
"engines": {
"node": ">= 10.0.0"
},
"eslintIgnore": [
"lib/build/"
],
"ava": {
"cache": true
},
"np": {
"yarn": false
},
"keywords": [],
"scripts": {
"test": "ava --verbose ./test/*.js",
"test:watch": "ava --watch --verbose --fail-fast ./test/*.js",
"test:preprod": "FILENAME=../umd/build/index.js ava --verbose ./test/*.js",
"test:prod": "FILENAME=../umd/lib-min.js ava --verbose ./test/*.js",
"lint": "npx eslint --cache './lib/**/*.js'",
"lint:watch": "esw -w --clear --color --cache './lib/**/*.js'",
"lint:fix": "npx eslint --fix './lib/**/*.js'",
"style": "prettier -c './lib/**/*.js'",
"style:fix": "prettier --c --write './lib/**/*.js'",
"build": "webpack",
"build:dev": "webpack --config webpack.dev.config.js"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.4",
"ava": "^3.15.0",
"axios": "^0.21.1",
"chalk": "^4.1.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^6.4.1",
"esbuild-loader": "^2.18.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-watch": "^7.0.0",
"express": "^4.17.1",
"get-port": "^5.1.1",
"prettier": "^2.3.0",
"supertest": "^6.1.6",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"babel-loader": "^8.2.3",
"cache-loader": "^4.1.0",
"mongoose": "^6.2.7",
"query-string": "^7.0.1"
}
}