-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
36 lines (36 loc) · 939 Bytes
/
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
{
"name": "axios-cancel",
"version": "0.0.0-development",
"description": "Simplify cancellation of http requests when using the awesome axios library",
"main": "dist/index.js",
"scripts": {
"build": "webpack -p",
"test": "jest --verbose",
"coverage": "jest --coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"axios",
"http",
"cancel",
"promise"
],
"author": "Thaer Abbas <abbas.t249@gmail.com>",
"license": "MIT",
"repository": {
"url": "https://github.com/thaerlabs/axios-cancel"
},
"devDependencies": {
"axios": "0.15.2",
"axios-mock-adapter": "1.7.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-preset-es2015": "6.18.0",
"jest": "16.0.2",
"semantic-release": "^6.3.2",
"webpack": "^1.14.0"
},
"jest": {
"verbose": true
}
}