generated from materya/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "eslint-config-materya",
"description": "An opinionated ESLint Config for Materya Projects",
"version": "10.0.0",
"main": "index.js",
"homepage": "https://github.com/materya/eslint-config",
"url": "https://github.com/materya/eslint-config",
"email": "Sylver <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/materya/eslint-config.git"
},
"author": "Sylver <[email protected]>",
"bugs": {
"url": "https://github.com/materya/eslint-config/issues"
},
"license": "GPL-3.0",
"keywords": [
"eslint",
"eslintconfig",
"config",
"materya"
],
"scripts": {
"release": "standard-version -s",
"test": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm t"
]
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5"
},
"devDependencies": {
"eslint": "8.41.0",
"standard-version": "9.5.0"
},
"peerDependencies": {
"eslint": ">= 6.x < 9",
"typescript": ">= 3.7.0 < 6"
}
}