-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "ava-playback",
"version": "0.0.15",
"description": "Record and playback http requests with nock, integrated into ava",
"main": "dist/index.js",
"repository": "https://github.com/dempfi/ava-playback",
"author": "Ike Ku <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "rm -rf ./dist && tsc",
"watch": "rm -rf ./dist && tsc -w --pretty"
},
"files": [
"dist",
"*.js"
],
"keywords": [
"ava",
"http",
"mock",
"nock",
"playback",
"requests",
"test",
"testing",
"vcr",
"record"
],
"dependencies": {
"json-stable-stringify": "^1.0.1",
"lodash.escaperegexp": "^4.1.2",
"lodash.isarray": "^4.0.0",
"lodash.isequalwith": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"lodash.mapvalues": "^4.6.0",
"nock": "^9.0.24",
"pkg-conf": "^2.0.0",
"shorthash": "^0.0.2"
},
"devDependencies": {
"@types/json-stable-stringify": "^1.0.31",
"@types/lodash.escaperegexp": "^4.1.2",
"@types/lodash.isarray": "^4.0.2",
"@types/lodash.isequalwith": "^4.4.2",
"@types/lodash.isplainobject": "^4.0.2",
"@types/lodash.mapvalues": "^4.6.2",
"@types/nock": "^8.2.1",
"@types/node": "^7.0.18",
"typescript": "^2.5.3"
}
}