-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
118 lines (118 loc) · 3.75 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "eslint-config-adjunct",
"version": "4.13.0",
"type": "commonjs",
"author": "David J. Bradshaw",
"license": "MIT",
"description": "A reasonable collection of plugins to use alongside your main esLint configuration",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/davidjbradshaw"
},
"repository": {
"type": "git",
"url": "https://github.com/davidjbradshaw/eslint-config-adjunct.git"
},
"main": "index.js",
"scripts": {
"ci-test": "npm run test",
"eslint": "eslint --color --ext .html,js,json,jsx,md *.* rules lib docs",
"eslint:fix": "npm run eslint --fix",
"prepublishOnly": "npm run test",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"test": "npm run eslint && eslint-find-rules -d --no-core"
},
"keywords": [
"airbnb",
"config",
"eslint",
"eslintconfig",
"javascript",
"standard",
"styleguide"
],
"dependencies": {
"@eslint/eslintrc": "^3.0.1",
"arrify": "^2.0.1",
"cosmiconfig": "^9.0.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"path": "^0.12.7",
"ramda": "^0.29.1",
"read-pkg-up": "7.0.1",
"rimraf": "^5.0.5",
"url": "^0.11.3"
},
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"ava": "^6.1.1",
"babel-eslint": "^10.1.0",
"chai": "^5.1.0",
"cypress": "^13.6.4",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-find-rules": "^4.1.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-const-case": "^1.2.2",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-fsa": "^1.0.12",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jest": "^27.8.0",
"eslint-plugin-jest-async": "^1.0.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-mocha-cleanup": "^1.11.3",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-pii": "^1.0.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-qunit": "^8.1.1",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-react-redux": "^4.1.0",
"eslint-plugin-redux-saga": "^1.3.2",
"eslint-plugin-security": "^2.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-xss": "^0.1.12",
"husky": "^9.0.11",
"in-publish": "^2.0.1",
"jasmine": "^5.1.0",
"jest": "^29.7.0",
"jest-dom": "^4.0.0",
"lint-staged": "^15.2.2",
"lodash-fp": "^0.10.4",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"prettier-cli": "^0.1.0",
"qunit": "^2.20.0",
"react": "^18.2.0",
"react-redux": "^9.1.0",
"redux": "^5.0.1",
"redux-saga": "^1.3.0",
"safe-publish-latest": "^2.0.0",
"snyk": "^1.1279.0",
"testing-library": "0.0.2"
},
"engines": {
"node": ">= 6.5"
},
"snyk": false
}