This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/examples/bindings/node/package.json

36 lines
959 B
JSON
Raw Normal View History

2017-06-28 09:35:11 -07:00
{
"name": "node-libzt",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"autogypi": "autogypi",
"node-gyp": "node-gyp",
"format": "prettier-standard '*.js'",
"preinstall": "mkdir -p libzt; cd libzt; ln -sf ../../../include include; ln -sf ../../../zto zto; ln -sf ../../../build build",
"postinstall": "npm run -- node-gyp rebuild"
},
"lint-staged": {
"linters": {
"src/**/*.js": [
"prettier-standard",
"git add"
]
}
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"node-gyp": "^3.6.2",
"prettier-standard": "^6.0.0"
},
"dependencies": {
"autogypi": "^0.2.2",
"nbind": "^0.3.13"
}
}