This repository has been archived by the owner on Jan 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
71 lines (71 loc) · 2.06 KB
/
package.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "eslint-plugin-typescript",
"version": "1.0.0-rc.3",
"description": "TypeScript plugin for ESLint",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"typescript"
],
"repository": "bradzacher/eslint-plugin-typescript",
"author": "Brad Zacher",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib/ tests/ tools/",
"lint:fix": "eslint lib/ tests/ tools/ --fix",
"docs": "eslint-docs",
"docs:check": "eslint-docs check",
"prettier": "prettier **/*.{md,yml,json}",
"format-no-write": "prettier-eslint lib/**/*.js tests/**/*.js tools/**/*.js --eslint-config-path=.eslintrc --eslint-ignore --prettier-ignore --eslint-path=node_modules/eslint --config=.prettierrc",
"format": "yarn format-no-write --write && yarn prettier --write",
"format-check": "yarn format-no-write --list-different && yarn prettier --list-different",
"test": "nyc mocha tests --recursive --reporter=dot",
"test:coverage": "nyc check-coverage --lines 95 --per-file",
"recommended:update": "node tools/update-recommended.js",
"pre-commit": "yarn check --verify-tree && yarn lint && yarn format-check && yarn test && yarn docs:check"
},
"dependencies": {
"requireindex": "^1.2.0",
"typescript-eslint-parser": "21.0.2"
},
"devDependencies": {
"eslint": "^5.9.0",
"nyc": "^13.1.0",
"eslint-config-eslint": "^5.0.1",
"eslint-config-prettier": "^3.3.0",
"eslint-docs": "^0.2.6",
"eslint-plugin-eslint-plugin": "^2.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"prettier-eslint-cli": "^4.7.1",
"typescript": "~3.1.1"
},
"peerDependencies": {
"eslint": ">=4.13.1 < 6",
"typescript": "~3.1.1"
},
"nyc": {
"include": [
"lib"
]
},
"lint-staged": {
"*.js": [
"yarn format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit && lint-staged"
}
},
"engines": {
"node": ">=6"
}
}