forked from flickr/yakbak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 852 Bytes
/
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
{
"name": "yakbak",
"version": "3.0.0",
"description": "Record and playback HTTP responses",
"main": "index.js",
"scripts": {
"lint": "eslint cli.js index.js lib test",
"test": "mocha"
},
"keywords": [
"http",
"https",
"record",
"playback",
"mock",
"service",
"vcr"
],
"repository": {
"type": "git",
"url": "[email protected]:flickr/yakbak.git"
},
"bin": "./cli.js",
"author": "Jeremy Ruppel",
"license": "MIT",
"devDependencies": {
"eslint": "^2.9.0",
"eslint-config-flickr": "~1.1.7",
"mocha": "~2.3.4",
"os-tmpdir": "^1.0.1",
"rimraf": "^2.5.2",
"semver": "^5.1.0",
"supertest": "~0.15.0"
},
"dependencies": {
"bluebird": "~3.3.4",
"debug": "^3.1.0",
"ejs": "^2.5.5",
"incoming-message-hash": "~3.2.1",
"mkdirp": "~0.5.0"
}
}