forked from assaf/node-replay
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "replay",
"description": "When API testing slows you down: record and replay HTTP responses like a boss",
"version": "1.9.2",
"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"
},
"scripts": {
"build": "coffee --bare --compile --output lib/replay src/replay/*.coffee",
"prepublish": "coffee --bare --compile --output lib/replay src/replay/*.coffee",
"postpublish": "rm -rf lib",
"test": "./node_modules/.bin/mocha"
},
"dependencies": {
"js-string-escape": "~1.0.0"
},
"devDependencies": {
"coffee-script": "~1.6.3",
"express": "~3.4.4",
"mocha": "~1.14.0",
"async": "~0.2.9",
"request": "~2.27.0"
},
"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"
}
]
}