napi-rs/package.json

49 lines
1,020 B
JSON
Raw Normal View History

2018-04-28 17:26:38 +09:00
{
"name": "napi-rs",
"version": "0.1.0",
2018-05-01 15:17:51 +09:00
"description": "A minimal library for building compiled Node add-ons in Rust.",
2018-04-28 17:26:38 +09:00
"bin": {
"napi": "scripts/napi.js"
},
"scripts": {
"check": "scripts/napi.js check"
},
"repository": {
"type": "git",
2018-05-01 15:17:51 +09:00
"url": "git@github.com:Brooooooklyn/napi-rs.git"
2018-04-28 17:26:38 +09:00
},
2018-05-01 15:17:51 +09:00
"maintainers": [
{
"name": "LongYinan",
"email": "lynweklm@gmail.com",
"homepage": "https://github.com/Brooooooklyn"
}
],
2018-04-28 17:26:38 +09:00
"license": "MIT",
"bugs": {
2018-05-01 15:17:51 +09:00
"url": "https://github.com/Brooooooklyn/napi-rs/issues"
2018-04-28 17:26:38 +09:00
},
2018-05-01 15:17:51 +09:00
"homepage": "https://github.com/Brooooooklyn/napi-rs#readme",
2018-04-28 17:26:38 +09:00
"dependencies": {
"minimist": "^1.2.0"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"parser": "typescript"
2018-05-01 15:17:51 +09:00
},
"files": [
"scripts/napi.js",
"src/**",
"build.rs",
"Cargo.toml",
"Cargo.lock"
],
"devDependencies": {
"prettier": "^1.12.1"
2018-04-28 17:26:38 +09:00
}
}