forked from poetic/nock-vcr-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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": "@albanv/nock-vcr-recorder",
"version": "0.1.4",
"description": "A test framework agnostic vcr implementation that uses nock.",
"main": "lib/vcr.js",
"scripts": {
"test": "rm -rf cassettes && mocha test/*-test.js",
"coverage": "rm -rf cassettes && istanbul cover _mocha -- test/*-test.js",
"postpublish": "greenkeeper-postpublish"
},
"repository": {
"type": "git",
"url": "https://github.com/vizeat/nock-vcr-recorder.git"
},
"keywords": [
"mocha",
"nock",
"testing",
"fixtures",
"mocking"
],
"author": "Jake Craige <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vizeat/nock-vcr-recorder/issues"
},
"homepage": "https://github.com/vizeat/nock-vcr-recorder",
"dependencies": {
"bluebird": "^3.4.0",
"lodash": "^4.13.1",
"mkdirp": "^0.5.0",
"nock": "^9.0.0"
},
"devDependencies": {
"express": "^4.13.4",
"greenkeeper-postpublish": "^1.0.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.1",
"request": "^2.73.0"
}
}