399668443a
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.0.11 to 14.0.12. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "napi-rs",
|
|
"version": "0.2.3",
|
|
"description": "A minimal library for building compiled Node add-ons in Rust.",
|
|
"bin": {
|
|
"napi": "scripts/napi.js"
|
|
},
|
|
"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",
|
|
"scripts": {
|
|
"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}'"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Brooooooklyn/napi-rs/issues"
|
|
},
|
|
"homepage": "https://github.com/Brooooooklyn/napi-rs#readme",
|
|
"dependencies": {
|
|
"minimist": "^1.2.5",
|
|
"toml": "^3.0.0"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"arrowParens": "always"
|
|
},
|
|
"files": ["scripts/napi.js", "LICENSE"],
|
|
"lint-staged": {
|
|
"*.js": ["prettier --write"],
|
|
"*.@(yml|yaml)": ["prettier --parser yaml --write"],
|
|
"*.json": ["prettier --parser json --write"],
|
|
"*.md": ["prettier --parser markdown --write"]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged && cargo fmt --all"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.0.12",
|
|
"husky": "^4.2.5",
|
|
"lint-staged": "^10.2.9",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.0.5"
|
|
}
|
|
}
|