84 lines
2.9 KiB
JSON
84 lines
2.9 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", "memory-testing"],
|
|
"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:memory": "yarn --cwd ./memory-testing 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 .",
|
|
"prepublishOnly": "npm run build && pinst --disable",
|
|
"test": "ava",
|
|
"test:memory": "node memory-testing/index.mjs",
|
|
"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.2",
|
|
"@types/lodash": "^4.14.170",
|
|
"@types/node": "^15.12.4",
|
|
"@types/sinon": "^10.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.28.0",
|
|
"@typescript-eslint/parser": "^4.28.0",
|
|
"ava": "^3.15.0",
|
|
"benny": "^3.6.15",
|
|
"c8": "^7.7.3",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^7.29.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"husky": "^6.0.0",
|
|
"lerna": "^4.0.0",
|
|
"lint-staged": "^11.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.3.1",
|
|
"shx": "^0.3.3",
|
|
"sinon": "^11.1.1",
|
|
"source-map-support": "^0.5.19",
|
|
"ts-node": "^10.0.0",
|
|
"tslib": "^2.3.0",
|
|
"typescript": "^4.3.4"
|
|
}
|
|
}
|