forked from nock/nock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.16 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
{
"name": "nock",
"description": "HTTP server mocking and expectations library for Node.js",
"tags": [
"Mock",
"HTTP",
"testing",
"isolation"
],
"version": "0.0.0-development",
"author": "Pedro Teixeira <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/nock/nock.git"
},
"bugs": {
"url": "http://github.com/nock/nock/issues"
},
"engines": {
"node": ">= 8.0"
},
"main": "./index",
"dependencies": {
"chai": "^4.1.2",
"debug": "^4.1.0",
"deep-equal": "^1.0.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.5",
"mkdirp": "^0.5.0",
"propagate": "^2.0.0",
"qs": "^6.5.1"
},
"devDependencies": {
"acorn": "^6.1.1",
"assert-rejects": "^1.0.0",
"aws-sdk": "^2.437.0",
"coveralls": "^3.0.3",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"got": "^9.6.0",
"hyperquest": "^2.1.3",
"isomorphic-fetch": "^2.2.0",
"lolex": "^4.0.1",
"needle": "^2.3.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.0.0",
"prettier": "1.17.0",
"proxyquire": "^2.1.0",
"request": "^2.83.0",
"restify-clients": "^2.2.0",
"rimraf": "^2.6.3",
"semantic-release": "^16.0.0-beta.18",
"sinon": "^7.3.1",
"superagent": "^5.0.2",
"tap": "^14.0.0"
},
"scripts": {
"unit": "tap --coverage ./tests/test_*.js",
"pretest": "npm run -s lint",
"test": "npm run -s unit",
"posttest": "npm run -s prettier:check",
"coverage": "tap --coverage-report=html && open coverage/lcov-report/index.html",
"coverage:upload": "tap --coverage-report=text-lcov | coveralls",
"lint": "eslint \"**/*.js\"",
"prettier": "prettier --write \"**/*.@(js|md|yml|json)\"",
"prettier:check": "prettier --check \"**/*.@(js|md|yml|json)\"",
"semantic-release": "semantic-release"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"tests/"
]
},
"license": "MIT"
}