eslint-plugin-typescript
Version:
TypeScript plugin for ESLint
50 lines (49 loc) • 1.25 kB
JSON
{
"name": "eslint-plugin-typescript",
"version": "0.12.0",
"description": "TypeScript plugin for ESLint",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"repository": "nzakas/eslint-plugin-typescript",
"author": "Nicholas C. Zakas",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib/ tests/",
"lint:fix": "eslint lib/ tests/ --fix",
"docs": "eslint-docs",
"docs:check": "eslint-docs check",
"mocha": "mocha tests --recursive --reporter=dot",
"test": "npm run lint && npm run mocha && npm run docs:check",
"precommit": "npm test && lint-staged"
},
"dependencies": {
"requireindex": "~1.1.0"
},
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-eslint": "^4.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-docs": "^0.1.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"mocha": "^4.0.1",
"prettier": "^1.11.1",
"typescript": "~2.6.1",
"typescript-eslint-parser": "^10.0.0"
},
"lint-staged": {
"*.js": [
"prettier --write --tab-width 4",
"git add"
]
},
"engines": {
"node": ">=4"
},
"license": "MIT"
}