forked from assaf/node-replay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.37 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "replay",
"description": "When API testing slows you down: record and replay HTTP responses like a boss",
"version": "2.1.0",
"config": {
"tag": "next"
},
"author": "Assaf Arkin <[email protected]> (http://labnotes.org/)",
"keywords": [
"test",
"testing",
"mock",
"stub",
"http",
"replay",
"vcr",
"api"
],
"main": "./lib",
"scripts": {
"build": "gulp build",
"test": "mocha",
"prepublish": "gulp build",
"postpublish": "gulp tag"
},
"dependencies": {
"babel-runtime": "6.6.1",
"debug": "^2.0",
"deep-equal": "^1.0.1",
"js-string-escape": "~1.0.0"
},
"devDependencies": {
"async": "^2.0.0-rc.3",
"babel": "^6.5.2",
"babel-eslint": "^6.0.2",
"body-parser": "^1.12.3",
"del": "^2.2.0",
"eslint": "^2.8.0",
"express": "^4.12.3",
"gulp": "^3.8.11",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^2.0.0",
"gulp-exec": "^2.1.1",
"gulp-notify": "^2.2.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-util": "^3.0.4",
"mocha": "^2.2.4",
"request": "^2.55.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"
}
]
}