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.15"
|
|
|
|
},
|
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",
|
2020-05-06 00:13:23 +09:00
|
|
|
"scripts": {
|
2020-09-30 15:34:26 +09:00
|
|
|
"bench": "cross-env SWC_NODE_PROJECT='./bench/tsconfig.json' node -r @swc-node/register bench/bench.ts",
|
2020-09-04 17:22:15 +09:00
|
|
|
"build": "tsc -p tsconfig.json && chmod 777 scripts/index.js",
|
2020-09-30 15:34:26 +09:00
|
|
|
"build:bench": "yarn --cwd ./bench build",
|
|
|
|
"build:test": "yarn --cwd ./test_module build",
|
2020-05-12 14:59:20 +09:00
|
|
|
"format": "run-p format:md format:json format:yaml format:source format:rs",
|
2020-05-06 00:13:23 +09:00
|
|
|
"format:md": "prettier --parser markdown --write './**/*.md'",
|
|
|
|
"format:json": "prettier --parser json --write './**/*.json'",
|
2020-05-12 14:59:20 +09:00
|
|
|
"format:rs": "cargo fmt",
|
2020-09-04 17:22:15 +09:00
|
|
|
"format:source": "prettier --config ./package.json --write './**/*.{js,ts}'",
|
2020-06-17 21:33:28 +09:00
|
|
|
"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}'",
|
2020-09-10 11:55:39 +09:00
|
|
|
"prepublishOnly": "npm run build",
|
2020-06-17 21:33:28 +09:00
|
|
|
"test": "ava"
|
2020-05-06 00:13:23 +09:00
|
|
|
},
|
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": {
|
2020-09-15 00:48:31 +09:00
|
|
|
"@octokit/rest": "^18.0.6",
|
2020-09-04 17:22:15 +09:00
|
|
|
"chalk": "^4.1.0",
|
2020-09-29 00:58:12 +09:00
|
|
|
"clipanion": "^2.6.2",
|
2020-09-22 01:19:26 +09:00
|
|
|
"debug": "^4.2.0",
|
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",
|
2020-10-11 06:53:04 +09:00
|
|
|
"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"],
|
2020-05-06 00:13:23 +09:00
|
|
|
"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"]
|
2020-05-06 00:13:23 +09:00
|
|
|
},
|
|
|
|
"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-26 17:58:06 +09:00
|
|
|
"@swc-node/register": "^1.0.0",
|
2020-09-04 17:22:15 +09:00
|
|
|
"@types/debug": "^4.1.5",
|
2020-08-24 19:01:55 +09:00
|
|
|
"@types/inquirer": "^7.3.1",
|
2020-10-13 00:48:25 +09:00
|
|
|
"@types/lodash": "^4.14.162",
|
2020-10-10 06:30:16 +09:00
|
|
|
"@types/node": "^14.11.8",
|
2020-10-06 00:34:37 +09:00
|
|
|
"@types/sinon": "^9.0.8",
|
2020-10-14 11:44:24 +09:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.4.1",
|
2020-10-07 15:18:22 +09:00
|
|
|
"@typescript-eslint/parser": "^4.4.0",
|
2020-09-29 20:45:15 +09:00
|
|
|
"ava": "^3.13.0",
|
2020-09-30 15:34:26 +09:00
|
|
|
"benny": "^3.6.14",
|
|
|
|
"cross-env": "^7.0.2",
|
2020-10-11 06:53:40 +09:00
|
|
|
"eslint": "^7.11.0",
|
2020-09-26 07:45:26 +09:00
|
|
|
"eslint-config-prettier": "^6.12.0",
|
2020-09-29 00:59:24 +09:00
|
|
|
"eslint-plugin-import": "^2.22.1",
|
2020-07-27 00:53:09 +09:00
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2020-09-08 00:02:01 +09:00
|
|
|
"husky": "^4.3.0",
|
2020-09-22 00:24:57 +09:00
|
|
|
"lint-staged": "^10.4.0",
|
2020-05-06 00:13:23 +09:00
|
|
|
"npm-run-all": "^4.1.5",
|
2020-07-27 00:53:09 +09:00
|
|
|
"nyc": "^15.1.0",
|
2020-09-16 13:17:03 +09:00
|
|
|
"prettier": "^2.1.2",
|
2020-10-07 15:16:58 +09:00
|
|
|
"sinon": "^9.2.0",
|
2020-07-27 00:53:09 +09:00
|
|
|
"source-map-support": "^0.5.19",
|
2020-08-24 19:01:55 +09:00
|
|
|
"ts-node": "^9.0.0",
|
2020-09-22 00:25:24 +09:00
|
|
|
"typescript": "^4.0.3"
|
2018-04-28 17:26:38 +09:00
|
|
|
}
|
|
|
|
}
|