-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "superinstance",
"version": "0.0.0",
"description": "allow creation of separate instances of superagent",
"main": "lib/index.js",
"repository": "https://github.com/f2etw/superinstance.git",
"author": "YuTin Liu <yuting1987@gmail.com>",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"prepublish": "npm run build",
"develop": "jest --watch ./src",
"test": "eslint ./src; jest --coverage ./src --forceExit",
"build": "rm -rf lib && mkdir lib && babel src/index.js --out-file lib/index.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"jest": {
"testEnvironment": "node",
"clearMocks": true
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-polyfill": "^6.23.0",
"babel-preset-react-native": "^1.9.2",
"body-parser": "^1.17.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"express": "^4.15.3",
"faker": "^4.1.0",
"jest": "^20.0.4",
"semantic-release": "^6.3.6"
},
"dependencies": {
"methods": "^1.1.2",
"superagent": "^3.8.1"
}
}