-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "request-middleware-pipeline",
"version": "0.1.0",
"description": "a request pipeline framework for js.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rollup -c -w",
"pro": "cross-env NODE_ENV=production rollup -c",
"build": "cross-env NODE_ENV=production rollup -c",
"prepare": "npm run build",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"keywords": [
"request",
"middleware",
"pipeline"
],
"author": "fangqifan",
"license": "MIT",
"bugs": {
"url": "https://github.com/fangqifan/request-middleware-pipeline/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:fangqifan/request-middleware-pipeline.git"
},
"homepage": "https://github.com/fangqifan/request-middleware-pipeline",
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"lint-staged": "^7.0.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"rollup-watch": "^3.2.2"
}
}