-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
{
"name": "chai-nock",
"version": "1.3.0",
"description": "Extends Chai with assertions for the Nock Http mocking framework",
"main": "index.js",
"scripts": {
"test": "jest test",
"test:coverage": "npm test -- --coverage",
"style": "eslint ."
},
"keywords": [
"chai",
"chai-plugin",
"nock",
"testing",
"assertions",
"interceptor",
"http"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chrisandrews7/chai-nock.git"
},
"author": "Chris Andrews, Ben Vaughan-Jones, Rick Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisandrews7/chai-nock/issues"
},
"homepage": "https://github.com/chrisandrews7/chai-nock#readme",
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^24.8.0",
"nock": "^10.0.2",
"prettier": "^1.15.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"dependencies": {
"chai": "^4.2.0",
"deep-equal": "^1.0.1"
}
}