-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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-el",
"version": "1.1.1",
"description": "JavaScript EL Style - ESLint Shareable Config",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext js,mjs,cjs",
"lint:fix": "eslint . --fix --ext js,mjs,cjs",
"test": "npm run lint && tape test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EliotPu/eslint-config-el.git"
},
"keywords": [
"JavaScript EL Style",
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"eslintconfig",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"simple",
"standard",
"standard style",
"style",
"style checker",
"style linter",
"verify"
],
"author": "EliotPu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EliotPu/eslint-config-el/issues"
},
"homepage": "https://github.com/EliotPu/eslint-config-el#readme",
"engines": {
"node": ">=16.13.1",
"npm": ">=7.10.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0",
"eslint-config-standard": ">=17",
"eslint-plugin-import": ">=2",
"eslint-plugin-n": ">=15",
"eslint-plugin-promise": ">=6",
"@types/eslint": ">=8",
"@types/tape": ">=4",
"tape": ">=5"
}
}