-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
94 lines (94 loc) · 2.06 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
{
"name": "semistandard",
"description": "All the goodness of `feross/standard` with semicolons sprinkled on top.",
"version": "17.0.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "https://feross.org"
},
"bin": {
"semistandard": "./bin/cmd.js"
},
"bugs": {
"url": "https://github.com/standard/semistandard/issues"
},
"dependencies": {
"eslint": "^8.20.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"standard-engine": "^15.0.0"
},
"devDependencies": {
"installed-check": "^6.0.3",
"merge": "^2.1.1",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"run-series": "^1.1.9",
"standard": "*",
"tape": "^5.3.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"homepage": "https://github.com/standard/semistandard",
"keywords": [
"JavaScript Standard Style",
"bikeshed",
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"semicolon",
"simple",
"standard",
"standard style",
"style",
"style checker",
"style linter",
"verify"
],
"license": "MIT",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/standard/semistandard.git"
},
"scripts": {
"test": "standard && installed-check --engine-check --engine-no-dev && tape test/*.js"
},
"standard": {
"ignore": "tmp/**"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}