-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
{
"name": "eslint-config-appnexus",
"version": "7.1.2",
"description": "AppNexus Standard Eslint Config",
"main": "index.js",
"scripts": {
"test": "jest -i --no-watchman",
"watch": "jest --watch",
"lint": "eslint . --ignore-pattern test-*",
"lint-fix": "eslint . --ignore-pattern test-* --fix",
"find-unused-rules": "eslint-find-rules -u -n",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"pre-push": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/appnexus/eslint-config-appnexus"
},
"keywords": [
"AppNexus",
"config",
"eslint",
"eslintconfig",
"javascript",
"styleguide"
],
"author": "Tim Santeford <[email protected]>",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"eslint-config-prettier": "^6.11.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-find-rules": "^4.1.0",
"eslint-plugin-hapi": "^4.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.2.2",
"lodash": "^4.17.21",
"pre-push": "^0.1.4",
"prettier": "^2.7.1",
"react": "^18.2.0",
"typescript": "^4.8.4"
},
"jest": {
"testEnvironment": "node"
}
}