-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.62 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "cp-axios",
"version": "0.3.1",
"description": "axios wrapper that provides an advanced cancellation api",
"author": {
"name": "Dmitriy Mozgovoy",
"email": "[email protected]",
"url": "http://github.com/DigitalBrainJS/"
},
"repository": "https://github.com/DigitalBrainJS/cp-axios.git",
"bugs": {
"url": "https://github.com/DigitalBrainJS/cp-axios/issues"
},
"main": "./lib/index.js",
"unpkg": {
"default": "./dist/cp-axios.umd.js"
},
"directories": {
"lib": "lib"
},
"scripts": {
"test": "mocha ./test/runner.js --exit --timeout=3000",
"test:watch": "nodemon --watch lib/ --watch ./test/tests --exec \\\"npm test\\\"",
"changelog": "auto-changelog -p",
"version": "npm run changelog && git add CHANGELOG.md",
"test:coverage": "nyc --check-coverage npm run test",
"coverage:report": "nyc report --reporter=html --reporter=text",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "npm run lint && npm run build && npm run test:coverage",
"postversion": "git push && git push --tags",
"build": "rollup -c",
"build:watch": "nodemon --watch lib/ --exec \\\"npm run build\\\"",
"dev": "cross-env NODE_ENV=development \"npm run test:watch\"",
"playground": "node playground/generator.js || true",
"playground:watch": "nodemon --watch ./playground --watch lib/ --exec \\\"npm run playground\\\"",
"lint": "eslint lib/**/*.js",
"fix": "eslint --fix lib/**/*.js"
},
"keywords": [
"axios",
"fetch",
"ajax",
"AbortController",
"CancelToken",
"signal",
"promise",
"abortable",
"cancelable",
"close",
"request",
"abort",
"cancel"
],
"license": "MIT",
"dependencies": {
"axios": ">=0.19.0",
"c-promise2": "^0.13.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "*",
"@rollup/plugin-node-resolve": "^11.2.0",
"auto-changelog": "^2.2.1",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"npm": "^6.14.11",
"nyc": "^15.1.0",
"rollup": "^2.42.3",
"rollup-plugin-terser": "^7.0.2"
},
"nyc": {
"lines": 60,
"functions": 60,
"branches": 60,
"statements": 60,
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
},
"reporter": [
"lcov",
"text-summary"
]
}
}