forked from assaf/node-replay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{ "name": "replay",
"description": "When API testing slows you down: record and replay HTTP responses like a boss",
"version": "1.5.0",
"author": "Assaf Arkin <[email protected]> (http://labnotes.org/)",
"keywords": [ "test", "testing", "mock", "stub", "http", "replay", "vcr", "api" ],
"main": "./lib/replay",
"directories": {
"doc": "./doc",
"lib": "./lib"
},
"engines": {
"node": "~v0.6.0"
},
"scripts": {
"prepublish": "make build",
"test": "./node_modules/.bin/mocha"
},
"dependencies": {
},
"devDependencies": {
"coffee-script": "~1.3.1",
"express": "~2.5.9",
"mocha": "~1.0.2",
"async": "~0.1.18",
"request": "~2.9.202"
},
"repository": {
"type": "git",
"url": "https://github.com/assaf/node-replay"
},
"bugs": {
"url": "https://github.com/assaf/node-replay/issues"
},
"licenses": [
{ "type": "MIT",
"url": "https://github.com/assaf/node-replay/blob/master/MIT-LICENSE"
}
]
}