-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "http2spy",
"version": "2.0.2",
"description": "test helpers for working with Node.js' http2 module",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"prepare": "npm run compile",
"compile": "tsc -p .",
"pretest": "npm run compile",
"test": "c8 mocha build/test",
"posttest": "npm run lint",
"lint": "gts check",
"fix": "gts fix",
"release": "standard-version"
},
"repository": "bcoe/http2spy",
"keywords": [
"http2",
"spy",
"testing"
],
"author": "Ben Coe <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"proxyquire": "^2.1.3",
"@types/proxyquire": "^1.3.28"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.11",
"c8": "^7.0.0",
"chai": "^4.2.0",
"gts": "^2.0.2",
"mocha": "^8.0.0",
"standard-version": "^9.0.0",
"typescript": "^4.0.0"
},
"engines": {
"node": ">=10.10.0"
},
"files": [
"build/src"
]
}