-
-
Notifications
You must be signed in to change notification settings - Fork 564
/
package.json
107 lines (107 loc) · 2.52 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
{
"name": "eslint-config-standard",
"description": "JavaScript Standard Style - ESLint Shareable Config",
"version": "17.1.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "https://feross.org"
},
"bugs": {
"url": "https://github.com/standard/eslint-config-standard/issues"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/index.d.ts",
"lib/index.js"
],
"devDependencies": {
"@arkweid/lefthook": "0.7.7",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@types/eslint": "8.44.8",
"ava": "6.1.3",
"commitlint-config-standard": "github:standard/commitlint-config-standard",
"editorconfig-checker": "5.1.8",
"eslint": "8.55.0",
"eslint-config-standard-with-typescript": "42.0.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"npm-run-all": "4.1.5",
"semantic-release": "22.0.12",
"semantic-release-standard": "github:standard/semantic-release",
"tsconfigs": "5.0.0",
"typescript": "5.5.4"
},
"homepage": "https://github.com/standard/eslint-config-standard",
"keywords": [
"JavaScript Standard 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"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"peerDependencies": {
"eslint": "^8.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/standard/eslint-config-standard.git"
},
"scripts": {
"clean-artifacts": "git clean lib -X --force",
"editorconfig": "editorconfig-checker",
"compile": "tsc",
"lint": "eslint .",
"unit": "ava",
"test": "run-s clean-artifacts editorconfig compile lint unit"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"dependencies": {
"globals": "13.24.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0"
}
}