-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "@heise/request-promise-native-record",
"version": "1.0.13",
"description": "Records and plays back responses from remote web services so you can test your code in peace.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "eslint index.js lib test && mocha --bail --check-leaks",
"dev": "mocha --bail --check-leaks -w"
},
"repository": {
"type": "git",
"url": "https://github.com/heiseonline/request-promise-native-record/"
},
"author": {
"name": "Philipp Busse",
"email": "[email protected]"
},
"publishConfig": {
"access": "public",
"registry": "http://registry.npmjs.org"
},
"dependencies": {
"debug": "^4.0.0",
"fs-extra": "^8.0.1",
"mockery": "^2.1.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"eslint": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.4",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
}
}