38 lines
976 B
JSON
38 lines
976 B
JSON
{
|
|
"name": "0-tools-eslint",
|
|
"description": "",
|
|
"version": "0.0.1",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"test": "vitest",
|
|
"build": "tsup",
|
|
"release": "npm run build && npm version patch && npm publish --tag latest",
|
|
"release_up": "npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts -- --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitlab.com/niac_vniizht/niac-packs"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://vniac.ru:4873"
|
|
},
|
|
"keywords": [
|
|
"eslint",
|
|
"tools"
|
|
],
|
|
"author": "vbuglov",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
"@typescript-eslint/parser": "^7.2.0",
|
|
"eslint": "^8.57.0",
|
|
"tsup": "^8.0.2",
|
|
"typescript": "^5.4.2",
|
|
"typescript-eslint": "^7.2.0"
|
|
}
|
|
}
|