-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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-trendmicro",
"version": "3.2.0",
"description": "Trend Micro's ESLint config.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepublish": "(in-install || eslint-find-rules --unused) && (not-in-publish || npm test) && safe-publish-latest",
"pretest": "npm run --silent lint",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/trendmicro-frontend/eslint-config-trendmicro"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"trendmicro",
"javascript",
"styleguide"
],
"author": "Cheton Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/trendmicro-frontend/eslint-config-trendmicro/issues"
},
"homepage": "https://github.com/trendmicro-frontend/eslint-config-trendmicro",
"dependencies": {
"eslint-config-airbnb": "^19.0.4"
},
"devDependencies": {
"eslint": "latest",
"eslint-find-rules": "^4.1.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"in-publish": "^2.0.1",
"safe-publish-latest": "^2.0.0"
},
"peerDependencies": {
"eslint": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest"
},
"engines": {
"node": ">=12"
}
}