eslint-plugin-tsc
Advanced tools
Comparing version 1.2.0 to 2.0.0
118
package.json
{ | ||
"name": "eslint-plugin-tsc", | ||
"version": "1.2.0", | ||
"version": "2.0.0", | ||
"license": "MIT", | ||
"description": "eslint-plugin-tsc", | ||
"main": "dist/index.js", | ||
"typings": "src/index.ts", | ||
"description": "Wraps a TypeScript compiler checks", | ||
"main": "index.js", | ||
"keywords": [ | ||
"eslint", | ||
"eslint-plugin", | ||
"eslintplugin", | ||
"eslint-rules", | ||
"typescript", | ||
"typescript-service" | ||
], | ||
"scripts": { | ||
"test": "npm run eslint && npm run tscheck && npm run test:r", | ||
"test:r": "npm run mocha -- src/*.spec.ts", | ||
"mocha": "node -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --timeout 5000", | ||
"test:w": "npm run mocha -- --watch-extensions ts --watch src/**/*.spec.ts", | ||
"test:d": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts src/**/*.spec.ts", | ||
"test:r": "mocha -r ts-node/register/transpile-only --no-timeouts src/**/*.spec.ts", | ||
"test:w": "mocha -r ts-node/register/transpile-only --watch-files src/**/*.ts --watch src/**/*.spec.ts", | ||
"test:d": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-files src/**/*.ts --watch src/**/*.spec.ts", | ||
"tscheck": "echo tscheck... && tsc --noEmit", | ||
@@ -18,79 +24,41 @@ "tscheck:w": "npm run tscheck -- --watch", | ||
"tsclint:w": "npm run tsclint -- --watch", | ||
"eslint": "eslint src --ext ts", | ||
"eslint:fix": "eslint src --ext \"ts\" --fix", | ||
"eslint:w": "chokidar \"src/**/*.ts\" --initial -c \"npm run eslint\"", | ||
"semantic-release": "semantic-release", | ||
"prepublishOnly": "npm run build && sed -i -e 's/_devDependencies/__devDependencies/g' package.json", | ||
"build": "tsc", | ||
"prebuild": "npm run clean", | ||
"clean": "rimraf dist", | ||
"commit": "git-cz" | ||
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"", | ||
"eslint:w": "watchexec -w src \"npm run eslint\"", | ||
"eslint:fix": "npm run eslint -- --fix", | ||
"build": "sh Taskfile build", | ||
"prettier:format": "npx prettier src --write" | ||
}, | ||
"dependencies": { | ||
"typescript-service": "^2.0.0" | ||
"typescript-service": "^2.0.3" | ||
}, | ||
"_devDependencies": { | ||
"@semantic-release/changelog": "^3.0.0", | ||
"@semantic-release/git": "^7.0.2", | ||
"@semantic-release/npm": "^5.0.2", | ||
"@types/eslint": "^4.16.3", | ||
"@types/mocha": "^5.2.5", | ||
"@types/node": "^10.9.1", | ||
"chokidar-cli": "^1.2.0", | ||
"conventional-changelog-eslint": "^3.0.0", | ||
"cz-adapter-eslint": "^0.1.2", | ||
"eslint": "^5.4.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-typescript": "^0.12.0", | ||
"eslint-plugin-unicorn": "^6.0.0", | ||
"mocha": "^5.2.0", | ||
"rimraf": "^2.6.2", | ||
"semantic-release": "^15.9.9", | ||
"ts-node": "^7.0.1", | ||
"typescript": "3.0.1", | ||
"typescript-eslint-parser": "^18.0.0" | ||
"devDependencies": { | ||
"@semantic-release/changelog": "^5.0.1", | ||
"@semantic-release/git": "^9.0.0", | ||
"@semantic-release/npm": "^7.0.6", | ||
"@types/eslint": "^7.2.2", | ||
"@types/mocha": "^8.0.3", | ||
"@types/node": "^14.10.2", | ||
"@typescript-eslint/parser": "^4.1.1", | ||
"eslint": "^7.9.0", | ||
"eslint-plugin-unicorn": "^21.0.0", | ||
"mocha": "^8.1.3", | ||
"prettier": "^2.1.1", | ||
"semantic-release": "^17.1.1", | ||
"ts-node": "^9.0.0", | ||
"typescript": "^4.0.2", | ||
"typescript-service": "^2.0.3", | ||
"watchexec-bin": "^1.0.0" | ||
}, | ||
"engines": { | ||
"node": ">=6", | ||
"npm": ">=3" | ||
"node": ">=12", | ||
"npm": ">=6" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/unlight/eslint-plugin-tsc.git" | ||
"url": "git+https://github.com/unlight/eslint-plugin-tsc.git" | ||
}, | ||
"keywords": [], | ||
"release": { | ||
"generateNotes": { | ||
"preset": "eslint" | ||
}, | ||
"analyzeCommits": { | ||
"preset": "eslint" | ||
}, | ||
"verifyConditions": [ | ||
"@semantic-release/changelog", | ||
"@semantic-release/github", | ||
"@semantic-release/npm", | ||
"@semantic-release/git" | ||
], | ||
"prepare": [ | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/git" | ||
], | ||
"publish": [ | ||
"@semantic-release/npm", | ||
"@semantic-release/github" | ||
], | ||
"success": [ | ||
"@semantic-release/github" | ||
], | ||
"fail": [ | ||
"@semantic-release/github" | ||
] | ||
"bugs": { | ||
"url": "https://github.com/unlight/eslint-plugin-tsc/issues" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-adapter-eslint" | ||
} | ||
} | ||
"homepage": "https://github.com/unlight/eslint-plugin-tsc#readme" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
1
0
6650
16
5
64
1
Updatedtypescript-service@^2.0.3