-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 977 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
37
38
39
40
{
"name": "mocha-axios",
"version": "1.4.2",
"description": "http assertions for mocha using axios",
"main": "integration.js",
"scripts": {
"lint": "eslint .",
"test": "nyc --reporter lcov --reporter text --exclude *.test.js mocha *.test.js",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/jdrydn/mocha-axios"
},
"files": [
"integration.js",
"withModify.js"
],
"author": "James D <[email protected]> (https://jdrydn.com)",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"deep-extend": "^0.5.0",
"ms": "^2.0.0"
},
"devDependencies": {
"body-parser": "^1.17.2",
"dotenv": "^8.2.0",
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^4.9.0",
"express": "^4.15.3",
"lodash": "^4.17.19",
"mocha": "^8.2.1",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=7.8.0"
}
}