-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.32 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
{
"name": "tape-nock",
"description": "Automatically record and playback HTTP calls for each tape test.",
"version": "1.6.6",
"author": "Dan Flettre <[email protected]>",
"bugs": {
"url": "https://github.com/Flet/tape-nock/issues"
},
"devDependencies": {
"axios": "^1.6.2",
"np": "^9.0.0",
"request": "^2.88.2",
"standard": "17.1.0",
"tap-spec": "^5.0.0",
"tape": "^5.7.2",
"tape-async": "^2.3.0"
},
"homepage": "https://github.com/Flet/tape-nock",
"keywords": [
"fixtures",
"http",
"nock",
"playback",
"record",
"tape",
"test"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Flet/tape-nock.git"
},
"scripts": {
"test": "npm run test:generic && npm run test:only && standard",
"test:generic": "tape test/*.js | tap-spec",
"test:only": "tape test/only/*.js | tap-spec",
"publish": "np"
},
"dependencies": {
"@types/nock": "^11.1.0",
"@types/tape": "^5.6.4",
"nock": "^13.4.0",
"sanitize-filename": "^1.6.3"
},
"engines": {
"node": ">= 6"
},
"contributors": [
"Arandjel Sarenac <[email protected]>"
],
"typings": "index.d.ts",
"config": {
"nyc": {
"exclude": [
"node_modules/**",
"test/**"
]
}
}
}