-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.4 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
{
"name": "eslint-config-axway",
"version": "9.0.0",
"description": "Shareable eslint config for Axway projects",
"main": "./index.js",
"author": "Axway, Inc. <[email protected]>",
"maintainers": [
"Chris Barber <[email protected]>"
],
"license": "Apache-2.0",
"repository": "https://github.com/appcelerator/eslint-config-axway",
"homepage": "https://github.com/appcelerator/eslint-config-axway#readme",
"keywords": [
"axway",
"config",
"eslint",
"eslintconfig",
"eslint-config",
"javascript",
"jscs",
"jshint",
"lint",
"linter",
"linting",
"styleguide"
],
"engines": {
"node": ">=v18.18.2"
},
"dependencies": {
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"find-root": "^1.1.0",
"semver": "^7.5.4"
},
"devDependencies": {
"eslint": "^8.49.0"
},
"optionalPeerDependencies": {
"@babel/core": "7.x",
"@babel/eslint-parser": "7.x",
"@babel/eslint-plugin": "7.x",
"@typescript-eslint/parser": "5.x",
"@typescript-eslint/eslint-plugin": "5.x",
"eslint-plugin-alloy": "1.x",
"eslint-plugin-chai-friendly": "0.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-mocha": "10.x",
"eslint-plugin-react": "7.x"
},
"peerDependencies": {
"eslint": "8.x"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint"
}
}