-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.63 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
65
66
67
{
"name": "node-musl",
"version": "0.3.1",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/bruce-one/node-musl.git"
},
"os": [
"linux"
],
"cpu": [
"x64",
"ia32",
"arm"
],
"directories": {
"test": "test"
},
"files": [
"package.json",
"yarn.lock",
"*.js",
"binding.gyp",
"bin/*",
"src/{config.mak.dist,Makefile}",
"src/litecross/**/*",
"src/presets/**/*",
"test/**/*",
"src/hashes/**/*",
"src/patches/**/*"
],
"bin": {
"musl-gcc": "./bin/musl-gcc",
"musl-g++": "./bin/musl-g++",
"musl-ld": "./bin/musl-ld",
"musl-exports": "./bin/exports.js",
"musl-env": "./bin/env.js"
},
"scripts": {
"clean": "node-pre-gyp clean && node-gyp clean && rm -rf bootstrap",
"test": "node test/test.js",
"install": "node-pre-gyp install --fallback-to-build --target_platform=hack --target_arch=${BUILD_ARCH:-$(node mapping.js)}",
"postinstall": "node symlinks.js ${BUILD_ARCH:-$(node mapping.js)}"
},
"author": {
"name": "Bryce Gibson"
},
"binary": {
"module_name": "node_musl",
"module_path": "{arch}",
"host": "https://github.com/bruce-one/node-musl/releases/download/",
"remote_path": "{version}",
"package_name": "{module_name}-v{version}-{arch}.tar.gz"
},
"license": "ISC",
"gypfile": true,
"dependencies": {
"@bryce-gibson/node-pre-gyp": "^0.10.0",
"debug": "^4.3.1",
"klaw-sync": "^6.0.0"
},
"devDependencies": {
"node-pre-gyp-github": "git+https://github.com/bruce-one/node-pre-gyp-github#f1ef240cd409bc11234d37465aa51ecec2db7a62"
}
}