-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 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
{
"name": "axios-request-handler",
"version": "1.0.4",
"description": "An Axios handler for making requests with polling, lock and cancel support.",
"main": "dist/axios-request.js",
"scripts": {
"build:prod": "NODE_ENV=production webpack -p",
"build:dev": "NODE_ENV=development && webpack",
"build": "yarn run build:dev && yarn run build:prod",
"test": "nyc --all mocha test/mocha.conf.js test/**/*.test.js test/**/**/*.test.js test/**/**/**/*.test.js",
"test-watch": "mocha test/mocha.conf.js test/**/*.test.js --watch",
"cover": "nyc report"
},
"author": "Mike Antoniadis <[email protected]> (http://ssbeefeater.github.io/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ssbeefeater/axios-request.git"
},
"dependencies": {
"axios": "^0.19.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.7.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.5.3",
"nock": "^9.0.24",
"nyc": "^11.2.1",
"sinon": "^3.3.0",
"webpack": "^3.6.0"
}
}