-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 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
{
"name": "@kungfu-trader/libnode",
"author": {
"name": "kungfu-trader",
"email": "info@kungfu.link"
},
"version": "18.0.0",
"description": "Build shared node lib",
"license": "Apache-2.0",
"main": "src/js/index.js",
"repository": {
"url": "https://github.com/kungfu-trader/libnode.git"
},
"binary": {
"module_name": "link_node",
"module_path": "dist/node",
"remote_path": "libnode/v{major}/v{version}",
"package_name": "libnode-v{version}-{platform}-{arch}-{configuration}.tar.gz",
"host": "https://prebuilt.libkungfu.cc"
},
"scripts": {
"preinstall": "node .gyp/node-npm-config.js",
"install": "node .gyp/node-pre-gyp.js install",
"prebuild": "node .gyp/node-npm-config.js",
"build": "node .gyp/node-pre-gyp.js build",
"clean": "node .gyp/node-pre-gyp.js clean",
"dist": "node .gyp/node-dist.js",
"make": "node .gyp/node-make.js",
"package": "node .gyp/node-pre-gyp.js package",
"rebuild": "node .gyp/node-pre-gyp.js rebuild",
"format": "prettier --write --parser typescript .gyp/*.js src/js/*.js"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.5",
"sywac": "^1.3.0"
},
"devDependencies": {
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"node-addon-api": "^5.0.0",
"node-gyp": "^9.0.0",
"prettier": "^2.6.0",
"xml-js": "^1.6.11",
"yarn": "^1.22.0"
}
}