-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
58 lines (58 loc) · 1.25 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
{
"name": "standardx",
"description": "JavaScript Standard Style with custom tweaks",
"version": "7.0.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "https://feross.org"
},
"bin": "./bin/cmd.js",
"bugs": {
"url": "https://github.com/standard/standardx/issues"
},
"type": "module",
"dependencies": {
"standard": "^16.0.1",
"standard-engine": "^14.0.1"
},
"devDependencies": {
"cross-spawn": "^7.0.3",
"tap-spec": "^5.0.0",
"tape": "^5.3.1"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"homepage": "https://github.com/standard/standardx",
"keywords": [],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/standard/standardx.git"
},
"scripts": {
"test": "standard && tape test/*.js | tap-spec"
},
"standard": {
"ignore": [
"test/test-repo-eslintrc",
"test/test-repo-package-json"
]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}