napi-rs/package.json

86 lines
2.4 KiB
JSON
Raw Normal View History

2018-04-28 17:26:38 +09:00
{
"name": "napi-rs",
2020-06-11 19:42:47 +09:00
"version": "0.2.4",
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": {
2020-07-29 23:04:47 +09:00
"napi": "scripts/index.js"
2018-04-28 17:26:38 +09:00
},
"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",
"scripts": {
2020-07-29 23:04:47 +09:00
"build": "tsc -p tsconfig.json",
"format": "run-p format:md format:json format:yaml format:source format:rs",
"format:md": "prettier --parser markdown --write './**/*.md'",
"format:json": "prettier --parser json --write './**/*.json'",
"format:rs": "cargo fmt",
"format:source": "prettier --config ./package.json --write './**/*.js'",
"format:yaml": "prettier --parser yaml --write './**/*.{yml,yaml}'",
2020-07-29 23:04:47 +09:00
"lint": "eslint -c .eslintrc.yml",
"test": "ava"
},
2018-04-28 17:26:38 +09:00
"bugs": {
2020-07-16 13:43:09 +09:00
"url": "https://github.com/napi-rs/napi-rs/issues"
2018-04-28 17:26:38 +09:00
},
2020-07-16 13:43:09 +09:00
"homepage": "https://github.com/napi-rs/napi-rs#readme",
2018-04-28 17:26:38 +09:00
"dependencies": {
"clipanion": "^2.4.4",
2020-07-27 00:53:09 +09:00
"inquirer": "^7.3.3",
2020-02-19 00:05:13 +09:00
"toml": "^3.0.0"
2018-04-28 17:26:38 +09:00
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
2018-07-23 11:18:56 +09:00
"arrowParens": "always"
2018-05-01 15:17:51 +09:00
},
2020-07-29 23:04:47 +09:00
"files": ["scripts", "LICENSE"],
"lint-staged": {
"*.js": ["prettier --write"],
"*.@(yml|yaml)": ["prettier --parser yaml --write"],
"*.json": ["prettier --parser json --write"],
"*.md": ["prettier --parser markdown --write"]
},
"ava": {
"files": ["test_module/__test__/**/*.spec.js"]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && cargo fmt --all"
}
},
2018-05-01 15:17:51 +09:00
"devDependencies": {
2020-07-27 00:53:09 +09:00
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/inquirer": "^7.3.0",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
2020-07-27 00:53:09 +09:00
"@typescript-eslint/parser": "^3.7.0",
"ava": "^3.11.0",
2020-07-27 00:53:09 +09:00
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
2020-07-27 00:53:09 +09:00
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"optionalDependencies": {
"tslib": "^2.0.0"
2018-04-28 17:26:38 +09:00
}
}