-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "publicaddr",
"version": "0.5.0",
"description": "Allow Node.js to listen on TCP with SO_REUSEPORT",
"repository": {
"type": "git",
"url": "git+https://github.com/jokester/publicaddr.git"
},
"bugs": {
"url": "https://github.com/jokester/publicaddr/issues"
},
"author": "Wang Guan <momocraft@gmail.com>",
"homepage": "https://github.com/jokester/publicaddr#readme",
"main": "index.js",
"bin": {
"publicaddr": "bin/publicaddr"
},
"files": [
"bin",
"src",
"binding.gyp",
"find-ldpreload.js",
"prebuilds"
],
"url": "https://github.com/jokester/publicaddr",
"scripts": {
"build": "node-gyp configure && node-gyp build",
"build:prebuildify": "prebuildify --napi --strip && rm -rf build",
"build:prebuildify-cross": "prebuildify-cross -i linux-armv7 -i linux-arm64-lts -i alpine -i centos7-devtoolset7 --napi --strip",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "BSD",
"dependencies": {
"node-gyp-build": "^4.6.0"
},
"devDependencies": {
"nan": "^2.7.0",
"node-gyp": "^9.4.0",
"prebuildify": "^5.0.1",
"prebuildify-cross": "^5.0.0"
},
"gypfile": false
}