-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "jsend-axios",
"version": "1.0.3",
"description": "JSend interceptor for axios",
"main": "dist/JSendInterceptor.js",
"module": "dist/JSendInterceptor.esm.js",
"scripts": {
"lint": "eslint .",
"prebuild": "del-cli dist",
"build": "rollup -c rollup.config.js",
"pretest": "npm run build",
"test": "jest",
"test:debug": "npm run pretest && node --inspect-brk node_modules/.bin/jest --runInBand",
"test:cov": "codecov",
"prepublishOnly": "npm run build",
"release": "np"
},
"keywords": [
"jsend",
"axios",
"interceptor"
],
"repository": {
"type": "git",
"url": "git://github.com/lukasaric/jsend-axios.git"
},
"author": {
"email": "[email protected]",
"name": "Luka Saric",
"url": "https://github.com/lukasaric"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lukasaric/jsend-axios/issues"
},
"homepage": "https://github.com/lukasaric/jsend-axios",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"axios": "^0.21.1",
"jsend": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"codecov": "^3.5.0",
"del-cli": "^2.0.0",
"eslint": "^6.0.1",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"nock": "^10.0.6",
"np": "^5.0.3",
"rollup": "^1.16.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.1.0"
}
}