forked from twolfson/nine-track-original-fork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.48 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
{
"name": "nine-track",
"description": "Record and playback HTTP requests",
"version": "1.4.0",
"homepage": "https://github.com/twolfson/nine-track",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/twolfson/nine-track.git"
},
"bugs": {
"url": "https://github.com/twolfson/nine-track/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/twolfson/nine-track/blob/master/LICENSE-MIT"
}
],
"main": "lib/nine-track",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"precheck": "twolfson-style precheck lib/ test/",
"lint": "twolfson-style lint lib/ test/",
"test": "rm -r test/actual-files || true; npm run precheck && mocha --reporter dot && npm run lint"
},
"dependencies": {
"async": "~0.2.10",
"clone": "~0.1.11",
"concat-stream": "~1.2.1",
"fs-memory-store": "~0.2.0",
"mkdirp": "~0.3.5",
"request": "~2.30.0",
"underscore": "~1.5.2"
},
"devDependencies": {
"body-parser": "~1.11.0",
"chai": "~1.8.1",
"express": "~3.4.7",
"jscs": "~1.10.0",
"jshint": "~2.5.10",
"mocha": "~1.11.0",
"pem": "~1.4.0",
"raw-body": "~1.1.5",
"request-mocha": "~0.2.0",
"rimraf": "~2.2.5",
"twolfson-style": "~1.6.0"
},
"keywords": [
"http",
"record",
"playback",
"cassette",
"vcr",
"middleware",
"8-track"
]
}