napi-rs/package.json

101 lines
3 KiB
JSON
Raw Normal View History

2018-04-28 17:26:38 +09:00
{
"name": "napi-rs",
2020-10-01 13:43:20 +09:00
"version": "0.3.9",
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
},
2020-09-04 17:22:15 +09:00
"engines": {
"node": ">= 10"
2020-09-04 17:22:15 +09:00
},
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-10-14 17:15:20 +09:00
"bench": "cross-env SWC_NODE_PROJECT='./bench/tsconfig.json' node -r ts-node/register/transpile-only bench/bench.ts",
2020-09-04 17:22:15 +09:00
"build": "tsc -p tsconfig.json && chmod 777 scripts/index.js",
"build:bench": "yarn --cwd ./bench build",
"build:test": "yarn --cwd ./test_module build",
"build:test:aarch64": "yarn --cwd ./test_module build-aarch64",
"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",
2020-09-04 17:22:15 +09:00
"format:source": "prettier --config ./package.json --write './**/*.{js,ts}'",
"format:yaml": "prettier --parser yaml --write './**/*.{yml,yaml}'",
2020-08-24 18:06:26 +09:00
"lint": "eslint -c .eslintrc.yml './src/**/*.ts' './test_module/**/*.{ts,js}'",
"prepublishOnly": "npm run build",
"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": {
"@octokit/rest": "^18.0.9",
2020-09-04 17:22:15 +09:00
"chalk": "^4.1.0",
"clipanion": "^2.6.2",
"debug": "^4.3.1",
2020-09-04 17:22:15 +09:00
"fdir": "^4.1.0",
2020-07-27 00:53:09 +09:00
"inquirer": "^7.3.3",
2020-09-04 17:22:15 +09:00
"lodash": "^4.17.20",
"putasset": "^5.0.3",
"toml": "^3.0.0",
"tslib": "^2.0.3"
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-10-03 23:34:52 +09:00
"files": ["scripts", "LICENSE"],
"lint-staged": {
2020-10-03 23:34:52 +09:00
"*.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"
}
},
2018-05-01 15:17:51 +09:00
"devDependencies": {
2020-07-27 00:53:09 +09:00
"@istanbuljs/nyc-config-typescript": "^1.0.1",
2020-09-04 17:22:15 +09:00
"@types/debug": "^4.1.5",
"@types/inquirer": "^7.3.1",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.10",
"@types/sinon": "^9.0.9",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"ava": "^3.13.0",
"benny": "^3.6.15",
"cross-env": "^7.0.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
2020-07-27 00:53:09 +09:00
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"npm-run-all": "^4.1.5",
2020-07-27 00:53:09 +09:00
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^9.2.1",
2020-07-27 00:53:09 +09:00
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
2018-04-28 17:26:38 +09:00
}
}