-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 859 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-chaos-interceptor",
"version": "1.0.2",
"main": "dist/index.js",
"types": "lib/types/index.d.ts",
"license": "MIT",
"description": "Inject chaos to axios. Randomize response.",
"author": "Daisuke Awaji <gee.awa@gmail.com> (https://github.com/daisuke-awaji)",
"homepage": "https://github.com/daisuke-awaji/axios-chaos-interceptor",
"scripts": {
"prepare": "tsc",
"build": "rm -rf ./dist && rm -rf ./lib && tsc",
"test": "jest",
"test:watch": "jest --watchAll"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.3.0",
"jest": "^27.0.6",
"nock": "^13.1.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.1"
},
"keywords": [
"axios",
"chaos",
"xhr",
"http",
"ajax",
"prmise",
"node"
]
}