napi-rs/package.json
2018-07-23 10:18:56 +08:00

47 lines
992 B
JSON

{
"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@github.com:Brooooooklyn/napi-rs.git"
},
"maintainers": [
{
"name": "LongYinan",
"email": "lynweklm@gmail.com",
"homepage": "https://github.com/Brooooooklyn"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Brooooooklyn/napi-rs/issues"
},
"homepage": "https://github.com/Brooooooklyn/napi-rs#readme",
"dependencies": {
"minimist": "^1.2.0"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"files": [
"scripts/napi.js",
"src/**",
"build.rs",
"Cargo.toml",
"Cargo.lock"
],
"devDependencies": {
"prettier": "^1.12.1"
}
}