-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 KB
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
{
"name": "node-rohc",
"version": "1.0.5",
"description": "Binding ROHC library",
"main": "./dist/index.js",
"types": "./dist/src/ts/index.d.ts",
"scripts": {
"tsc": "tsc",
"install": "prebuild-install --runtime napi --tag-prefix '' || node-gyp rebuild",
"build": "node-gyp rebuild && npm run tsc",
"build:dev": "node-gyp rebuild --debug",
"test": "sudo nyc --reporter=json-summary mocha tests/* && npm run coverage:badge",
"coverage:badge": "coverage-badge-creator"
},
"keywords": [],
"author": "Stefan Werfling",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">12.0.0"
},
"files": [
"dist/*",
"src/*",
"index.ts",
"binding.gyp",
"tsconfig.json"
],
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"jmespath": "^0.16.0",
"node-addon-api": "^7.1.0",
"prebuild-install": "^7.0.0",
"clang-format": "^1.4.0"
},
"binary": {
"napi_versions": [
3
]
},
"devDependencies": {
"@types/jmespath": "^0.15.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"coverage-badge-creator": "^1.0.9",
"inet_xtoy": "^1.2.1",
"mocha": "10.1.0",
"nyc": "^15.1.0",
"should": "^13.2.3",
"typescript": "^4.5.4"
}
}