forked from flickr/yakbak
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 901 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
43
44
{
"name": "yakbak",
"version": "2.5.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": "~2.1.2",
"ejs": "~2.3.1",
"mkdirp": "~0.5.0",
"jsonwebtoken": "^7.0.1",
"lodash": "^4.13.1",
"form-urlencoded": "^1.5.0"
}
}