napi-rs/package.json

33 lines
687 B
JSON
Raw Normal View History

2018-04-28 17:26:38 +09:00
{
"name": "napi-rs",
"version": "0.1.0",
"description":
"A minimal library for building compiled Node add-ons in Rust.",
"bin": {
"napi": "scripts/napi.js"
},
"scripts": {
"check": "scripts/napi.js check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atom/napi.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/atom/napi/issues"
},
"homepage": "https://github.com/atom/napi#readme",
"dependencies": {
"minimist": "^1.2.0"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"parser": "typescript"
}
}