82 lines
2.8 KiB
JSON
82 lines
2.8 KiB
JSON
{
|
|
"name": "napi-rs",
|
|
"version": "0.0.0",
|
|
"description": "A minimal library for building compiled Node add-ons in Rust.",
|
|
"private": "true",
|
|
"workspaces": ["cli", "triples"],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:Brooooooklyn/napi-rs.git"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"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",
|
|
"build:bench": "yarn --cwd ./bench build",
|
|
"build:test": "yarn --cwd ./test_module build",
|
|
"build:test:aarch64": "yarn --cwd ./test_module build-aarch64",
|
|
"build:test:android": "yarn --cwd ./test_module build --target aarch64-linux-android",
|
|
"build:test:armv7": "yarn --cwd ./test_module build-armv7",
|
|
"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,ts}'",
|
|
"format:yaml": "prettier --parser yaml --write './**/*.{yml,yaml}'",
|
|
"lint": "eslint -c .eslintrc.yml './cli/**/*.ts' './test_module/**/*.{ts,js}'",
|
|
"prepublishOnly": "npm run build && pinst --disable",
|
|
"test": "ava",
|
|
"postinstall": "husky install",
|
|
"postpublish": "pinst --enable"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/napi-rs/napi-rs/issues"
|
|
},
|
|
"homepage": "https://github.com/napi-rs/napi-rs#readme",
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"arrowParens": "always"
|
|
},
|
|
"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/debug": "^4.1.5",
|
|
"@types/inquirer": "^7.3.1",
|
|
"@types/lodash": "^4.14.168",
|
|
"@types/node": "^14.14.35",
|
|
"@types/sinon": "^9.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^4.18.0",
|
|
"@typescript-eslint/parser": "^4.18.0",
|
|
"ava": "^3.15.0",
|
|
"benny": "^3.6.15",
|
|
"c8": "^7.6.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^7.22.0",
|
|
"eslint-config-prettier": "^8.1.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"husky": "^5.1.3",
|
|
"lerna": "^4.0.0",
|
|
"lint-staged": "^10.5.4",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.2.1",
|
|
"shx": "^0.3.3",
|
|
"sinon": "^9.2.4",
|
|
"source-map-support": "^0.5.19",
|
|
"ts-node": "^9.1.1",
|
|
"tslib": "^2.1.0",
|
|
"typescript": "^4.2.3"
|
|
}
|
|
}
|