80ce593d74
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.9.0 to 3.9.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.9.1/packages/eslint-plugin) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
85 lines
2.4 KiB
JSON
85 lines
2.4 KiB
JSON
{
|
|
"name": "napi-rs",
|
|
"version": "0.2.4",
|
|
"description": "A minimal library for building compiled Node add-ons in Rust.",
|
|
"bin": {
|
|
"napi": "scripts/index.js"
|
|
},
|
|
"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": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"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'",
|
|
"format:yaml": "prettier --parser yaml --write './**/*.{yml,yaml}'",
|
|
"lint": "eslint -c .eslintrc.yml",
|
|
"test": "ava"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/napi-rs/napi-rs/issues"
|
|
},
|
|
"homepage": "https://github.com/napi-rs/napi-rs#readme",
|
|
"dependencies": {
|
|
"clipanion": "^2.4.4",
|
|
"inquirer": "^7.3.3",
|
|
"toml": "^3.0.0"
|
|
},
|
|
"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"]
|
|
},
|
|
"ava": {
|
|
"files": ["test_module/__test__/**/*.spec.js"]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged && cargo fmt --all"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
|
"@types/inquirer": "^7.3.0",
|
|
"@types/node": "^14.6.0",
|
|
"@typescript-eslint/eslint-plugin": "^3.9.1",
|
|
"@typescript-eslint/parser": "^3.9.1",
|
|
"ava": "^3.11.1",
|
|
"eslint": "^7.7.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-import": "^2.22.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"husky": "^4.2.5",
|
|
"lint-staged": "^10.2.11",
|
|
"npm-run-all": "^4.1.5",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.0.5",
|
|
"source-map-support": "^0.5.19",
|
|
"ts-node": "^8.10.2",
|
|
"typescript": "^3.9.7"
|
|
},
|
|
"optionalDependencies": {
|
|
"tslib": "^2.0.1"
|
|
}
|
|
}
|