{ "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", "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", "test": "ava" }, "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": { "@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.9.0", "@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", "lerna": "^3.22.1", "lint-staged": "^10.5.2", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", "prettier": "^2.2.1", "shx": "^0.3.3", "sinon": "^9.2.1", "source-map-support": "^0.5.19", "ts-node": "^9.0.0", "tslib": "^2.0.3", "typescript": "^4.1.2" } }