This repository has been archived by the owner on Dec 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
69 lines (69 loc) · 1.53 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
64
65
66
67
68
69
{
"name": "replay",
"description": "When API testing slows you down: record and replay HTTP responses like a boss",
"version": "2.4.0",
"engines": {
"node": ">=6.0.0"
},
"config": {
"tag": "next"
},
"author": "Assaf Arkin <assaf@labnotes.org> (http://labnotes.org/)",
"keywords": [
"test",
"testing",
"mock",
"stub",
"http",
"replay",
"vcr",
"api"
],
"main": "./lib",
"scripts": {
"build": "gulp build",
"test": "mocha",
"prepare": "gulp build",
"postpublish": "gulp tag"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"debug": "^4.0.1",
"js-string-escape": "^1.0.1"
},
"devDependencies": {
"async": "^2.6.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"del": "^3.0.0",
"eslint": "^5.6.1",
"express": "^4.16.3",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.1",
"gulp-eslint": "^5.0.0",
"gulp-exec": "^3.0.2",
"gulp-notify": "^3.2.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-util": "^3.0.7",
"mocha": "^5.2.0",
"request": "^2.88.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"
}
]
}