forked from bradzacher/eslint-plugin-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"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.8.1",
"typescript-eslint-parser": "^15.0.0"
},
"lint-staged": {
"*.js": [
"prettier --write --tab-width 4",
"git add"
]
},
"engines": {
"node": ">=4"
},
"license": "MIT"
}