-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 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
54
55
{
"name": "axios-data-unpacker",
"version": "1.0.0",
"description": "Axios middleware that unpacks HTTP responses so that you can focus on actual response",
"main": "dist/index.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anubhavsrivastava/axios-data-unpacker.git"
},
"keywords": [
"axios",
"middleware",
"axios-ecosystem",
"axios-middleware",
"axios-rest",
"axios-instance",
"axios-plugin"
],
"author": {
"name": "Anubhav Srivastava",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/anubhavsrivastava/axios-data-unpacker/issues"
},
"homepage": "https://github.com/anubhavsrivastava/axios-data-unpacker#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-stage-0": "^7.0.0",
"@babel/preset-stage-1": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"@babel/preset-stage-3": "^7.0.0",
"@babel/runtime": "^7.4.3",
"babel-loader": "^8.0.5",
"coveralls": "^3.0.3",
"jest": "^24.7.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}