-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
100 lines (100 loc) · 2.64 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
{
"name": "standard-engine",
"version": "15.1.0",
"description": "Wrap your standards in a tortilla and cover it in special sauce.",
"keywords": [
"JavaScript Standard Style",
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"simple",
"standard",
"standard style",
"style",
"style checker",
"style linter",
"verify"
],
"repository": "standard/standard-engine",
"license": "MIT",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "https://feross.org"
},
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build": "run-s build:*",
"check:dependency-check": "dependency-check *.js 'bin/**/*.js' 'lib/**/*.js' --no-dev",
"check:installed-check": "installed-check --engine-no-dev",
"check:standard": "standard",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 95 --ignore-files 'test/*'",
"check": "run-s clean && run-p check:*",
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts')",
"clean": "run-p clean:*",
"test-ci": "c8 --reporter=lcov --reporter=text tape test/clone.js test/*.js",
"test": "run-s check test-ci",
"prepublishOnly": "run-s build"
},
"dependencies": {
"get-stdin": "^8.0.0",
"minimist": "^1.2.6",
"pkg-conf": "^3.1.0",
"xdg-basedir": "^4.0.0"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@types/cross-spawn": "^6.0.2",
"@types/eslint": "^8.40.0",
"@types/minimist": "^1.2.2",
"@types/node": "^12.20.55",
"@types/tape": "^5.6.0",
"c8": "^7.14.0",
"cross-spawn": "^7.0.3",
"dependency-check": "^5.0.0-7",
"eslint": "^8.41.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"installed-check": "^7.1.1",
"npm-run-all2": "^6.0.5",
"standard": "^17.1.0",
"tape": "^5.6.3",
"type-coverage": "^2.26.0",
"typescript": "~5.0.4"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}