2018-04-28 16:26:38 +08:00
|
|
|
{
|
|
|
|
"name": "napi-rs",
|
2020-10-15 20:16:52 +08:00
|
|
|
"version": "0.0.0",
|
2018-05-01 14:17:51 +08:00
|
|
|
"description": "A minimal library for building compiled Node add-ons in Rust.",
|
2020-10-15 20:16:52 +08:00
|
|
|
"private": "true",
|
2020-12-08 11:23:26 +08:00
|
|
|
"workspaces": ["cli", "triples"],
|
2018-04-28 16:26:38 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-05-01 14:17:51 +08:00
|
|
|
"url": "git@github.com:Brooooooklyn/napi-rs.git"
|
2018-04-28 16:26:38 +08:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
2020-05-05 23:13:23 +08:00
|
|
|
"scripts": {
|
2020-10-15 20:16:52 +08:00
|
|
|
"bench": "cross-env TS_NODE_PROJECT='./bench/tsconfig.json' node -r ts-node/register/transpile-only bench/bench.ts",
|
|
|
|
"build": "tsc -p tsconfig.json && shx chmod 777 cli/scripts/index.js && node generate-triplelist.js",
|
2020-09-30 14:34:26 +08:00
|
|
|
"build:bench": "yarn --cwd ./bench build",
|
|
|
|
"build:test": "yarn --cwd ./test_module build",
|
2020-10-15 16:14:11 +08:00
|
|
|
"build:test:aarch64": "yarn --cwd ./test_module build-aarch64",
|
2020-12-09 15:50:34 +08:00
|
|
|
"build:test:android": "yarn --cwd ./test_module build --target aarch64-linux-android",
|
2020-12-08 11:23:26 +08:00
|
|
|
"build:test:armv7": "yarn --cwd ./test_module build-armv7",
|
2020-05-12 13:59:20 +08:00
|
|
|
"format": "run-p format:md format:json format:yaml format:source format:rs",
|
2020-05-05 23:13:23 +08:00
|
|
|
"format:md": "prettier --parser markdown --write './**/*.md'",
|
|
|
|
"format:json": "prettier --parser json --write './**/*.json'",
|
2020-05-12 13:59:20 +08:00
|
|
|
"format:rs": "cargo fmt",
|
2020-09-04 16:22:15 +08:00
|
|
|
"format:source": "prettier --config ./package.json --write './**/*.{js,ts}'",
|
2020-06-17 20:33:28 +08:00
|
|
|
"format:yaml": "prettier --parser yaml --write './**/*.{yml,yaml}'",
|
2020-10-15 20:16:52 +08:00
|
|
|
"lint": "eslint -c .eslintrc.yml './cli/**/*.ts' './test_module/**/*.{ts,js}'",
|
2021-02-22 15:39:50 +08:00
|
|
|
"prepublishOnly": "npm run build && pinst --disable",
|
|
|
|
"test": "ava",
|
|
|
|
"postinstall": "husky install",
|
|
|
|
"postpublish": "pinst --enable"
|
2020-05-05 23:13:23 +08:00
|
|
|
},
|
2018-04-28 16:26:38 +08:00
|
|
|
"bugs": {
|
2020-07-16 12:43:09 +08:00
|
|
|
"url": "https://github.com/napi-rs/napi-rs/issues"
|
2018-04-28 16:26:38 +08:00
|
|
|
},
|
2020-07-16 12:43:09 +08:00
|
|
|
"homepage": "https://github.com/napi-rs/napi-rs#readme",
|
2018-04-28 16:26:38 +08:00
|
|
|
"prettier": {
|
|
|
|
"printWidth": 80,
|
|
|
|
"semi": false,
|
|
|
|
"singleQuote": true,
|
|
|
|
"trailingComma": "all",
|
2018-07-23 10:18:56 +08:00
|
|
|
"arrowParens": "always"
|
2018-05-01 14:17:51 +08:00
|
|
|
},
|
2020-05-05 23:13:23 +08:00
|
|
|
"lint-staged": {
|
2020-12-08 11:23:26 +08:00
|
|
|
"*.js": ["prettier --write"],
|
|
|
|
"*.@(yml|yaml)": ["prettier --parser yaml --write"],
|
|
|
|
"*.json": ["prettier --parser json --write"],
|
|
|
|
"*.md": ["prettier --parser markdown --write"]
|
2020-05-05 23:13:23 +08:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged && cargo fmt --all"
|
|
|
|
}
|
|
|
|
},
|
2018-05-01 14:17:51 +08:00
|
|
|
"devDependencies": {
|
2020-07-26 23:53:09 +08:00
|
|
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
2020-09-04 16:22:15 +08:00
|
|
|
"@types/debug": "^4.1.5",
|
2020-08-24 18:01:55 +08:00
|
|
|
"@types/inquirer": "^7.3.1",
|
2021-01-25 05:43:08 +00:00
|
|
|
"@types/lodash": "^4.14.168",
|
2021-02-22 05:32:34 +00:00
|
|
|
"@types/node": "^14.14.31",
|
2020-12-24 16:26:53 +00:00
|
|
|
"@types/sinon": "^9.0.10",
|
2021-03-01 12:18:52 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.15.2",
|
2021-03-01 11:31:32 +00:00
|
|
|
"@typescript-eslint/parser": "^4.15.2",
|
2021-01-04 07:45:03 +00:00
|
|
|
"ava": "^3.15.0",
|
2020-11-16 07:31:53 +00:00
|
|
|
"benny": "^3.6.15",
|
2020-12-02 07:26:29 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2021-03-01 11:31:16 +00:00
|
|
|
"eslint": "^7.21.0",
|
2021-03-01 05:44:07 +00:00
|
|
|
"eslint-config-prettier": "^8.1.0",
|
2020-09-28 15:59:24 +00:00
|
|
|
"eslint-plugin-import": "^2.22.1",
|
2021-01-11 05:43:47 +00:00
|
|
|
"eslint-plugin-prettier": "^3.3.1",
|
2021-03-01 11:29:39 +00:00
|
|
|
"husky": "^5.1.2",
|
2020-10-15 20:16:52 +08:00
|
|
|
"lerna": "^3.22.1",
|
2021-02-08 05:39:01 +00:00
|
|
|
"lint-staged": "^10.5.4",
|
2020-05-05 23:13:23 +08:00
|
|
|
"npm-run-all": "^4.1.5",
|
2020-07-26 23:53:09 +08:00
|
|
|
"nyc": "^15.1.0",
|
2020-11-30 07:45:42 +00:00
|
|
|
"prettier": "^2.2.1",
|
2020-10-15 20:16:52 +08:00
|
|
|
"shx": "^0.3.3",
|
2021-01-25 05:43:35 +00:00
|
|
|
"sinon": "^9.2.4",
|
2020-07-26 23:53:09 +08:00
|
|
|
"source-map-support": "^0.5.19",
|
2020-12-08 08:04:43 +00:00
|
|
|
"ts-node": "^9.1.1",
|
2021-01-11 05:49:58 +00:00
|
|
|
"tslib": "^2.1.0",
|
2021-03-01 11:31:19 +00:00
|
|
|
"typescript": "^4.2.2"
|
2018-04-28 16:26:38 +08:00
|
|
|
}
|
2020-12-08 11:23:26 +08:00
|
|
|
}
|