napi-rs/package.json
2020-12-02 07:26:29 +00:00

100 lines
3 KiB
JSON

{
"name": "napi-rs",
"version": "0.3.9",
"description": "A minimal library for building compiled Node add-ons in Rust.",
"bin": {
"napi": "scripts/index.js"
},
"engines": {
"node": ">= 10"
},
"repository": {
"type": "git",
"url": "git@github.com:Brooooooklyn/napi-rs.git"
},
"maintainers": [
{
"name": "LongYinan",
"email": "lynweklm@gmail.com",
"homepage": "https://github.com/Brooooooklyn"
}
],
"license": "MIT",
"scripts": {
"bench": "cross-env SWC_NODE_PROJECT='./bench/tsconfig.json' node -r ts-node/register/transpile-only bench/bench.ts",
"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",
"format:source": "prettier --config ./package.json --write './**/*.{js,ts}'",
"format:yaml": "prettier --parser yaml --write './**/*.{yml,yaml}'",
"lint": "eslint -c .eslintrc.yml './src/**/*.ts' './test_module/**/*.{ts,js}'",
"prepublishOnly": "npm run build",
"test": "ava"
},
"bugs": {
"url": "https://github.com/napi-rs/napi-rs/issues"
},
"homepage": "https://github.com/napi-rs/napi-rs#readme",
"dependencies": {
"@octokit/rest": "^18.0.9",
"chalk": "^4.1.0",
"clipanion": "^2.6.2",
"debug": "^4.3.1",
"fdir": "^4.1.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"putasset": "^5.0.3",
"toml": "^3.0.0",
"tslib": "^2.0.3"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"files": ["scripts", "LICENSE"],
"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": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@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.3",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^9.2.1",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}