forked from seancroach/eslint-config-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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
{
"name": "@pcode-at/eslint-config-typescript",
"version": "0.0.6",
"description": "A shared ESLint configuration to be used across all pcode projects",
"license": "MIT",
"repository": "pcode-at/eslint-config-typescript",
"author": "pcode",
"main": "index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"prepare": "prettier ** --write",
"test": "prettier ** --check && ava"
},
"files": [
"index.js"
],
"keywords": [
"config",
"configuration",
"eslint",
"eslint-config",
"ts",
"typescript"
],
"peerDependencies": {
"eslint": ">=5",
"prettier": ">=1.13.0",
"typescript": ">=2.8.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@pcode-at/tsconfig": "0.0.5",
"ava": "^3.14.0",
"eslint": "^7.16.0",
"husky": "^4.3.6",
"prettier": "^2.2.1",
"prettier-plugin-package": "^1.3.0",
"typescript": "^4.1.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm test"
}
}
}