-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.33 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
{
"name": "@supercharge/eslint-config",
"description": "A shareable ESLint config for JavaScript projects",
"version": "3.0.1",
"author": {
"name": "Marcus Pöhls",
"email": "marcus@superchargejs.com",
"url": "https://superchargejs.com"
},
"bugs": {
"url": "https://github.com/supercharge/eslint-config/issues"
},
"dependencies": {
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-n": "~16.6.2",
"eslint-plugin-promise": "~6.1.1"
},
"peerDependencies": {
"eslint": "8.x"
},
"devDependencies": {
"@japa/run-failed-tests": "~1.1.1",
"@japa/runner": "~2.5.1",
"@japa/spec-reporter": "~1.3.3",
"c8": "~9.1.0",
"eslint": "~8.57.0",
"expect": "~29.7.0"
},
"engines": {
"node": ">=16"
},
"files": [
"index.js"
],
"main": "index.js",
"homepage": "https://github.com/supercharge/eslint-config",
"keywords": [
"supercharge",
"superchargejs",
"eslint",
"eslint-config",
"eslint-config",
"nodejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/eslint-config.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test": "c8 node bin/test.js"
}
}