-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "icedfrisby-nock",
"description": "Concise support for mock requests in IcedFrisby",
"keywords": [
"frisby",
"icedfrisby",
"api",
"api-testing",
"mock"
],
"version": "2.1.0",
"license": "MIT",
"main": "icedfrisby-nock.js",
"scripts": {
"lint": "eslint '**/*.js'",
"prettier": "prettier --write \"**/*.{md,js,json,yml}\"",
"prettier:check": "prettier --check \"**/*.{md,js,json,yml}\"",
"test:js": "nyc mocha '*.spec.js'",
"test": "npm run lint && npm run test:js"
},
"files": [],
"repository": "paulmelnikow/icedfrisby-nock",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"icedfrisby": "^4.0.0",
"mixwith": "^0.1.1",
"mocha": "^8.0.1",
"nock": "13.0.4",
"node-fetch": "^2.3.0",
"nyc": "^15.0.0",
"prettier": "^2.0.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"peerDependencies": {
"icedfrisby": ">= 2.2.0",
"nock": "*"
},
"engine": {
"node": ">= 6"
}
}