-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.47 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": "tuntap2",
"version": "0.0.0",
"description": "",
"main": "./dist/index.js",
"types": "./dist/src/ts/index.d.ts",
"scripts": {
"install": "prebuild-install --runtime napi --tag-prefix '' || node-gyp rebuild",
"build": "node-gyp rebuild && npx tsc --build",
"build:dev": "node-gyp rebuild --debug",
"test": "sudo nyc --reporter=json-summary mocha tests/* && npm run coverage:badge",
"coverage:badge": "coverage-badge-creator"
},
"author": "pupiltong",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/PupilTong/node-tuntap2.git"
},
"engines": {
"node": ">12.0.0"
},
"keywords": [
"tunnel",
"tun",
"tap",
"internet",
"vpn"
],
"files": [
"dist/*",
"src/*",
"index.ts",
"binding.gyp",
"tsconfig.json"
],
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"jmespath": "^0.16.0",
"node-addon-api": "^4.0.0",
"prebuild-install": "^7.0.0"
},
"bugs": {
"url": "https://github.com/PupilTong/node-tuntap2/issues"
},
"homepage": "https://github.com/PupilTong/node-tuntap2#readme",
"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": "^9.1.4",
"nyc": "^15.1.0",
"should": "^13.2.3",
"typescript": "^4.5.4"
}
}