-
-
Notifications
You must be signed in to change notification settings - Fork 399
/
package.json
116 lines (116 loc) · 2.35 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
108
109
110
111
112
113
114
115
116
{
"name": "yo",
"version": "5.0.0",
"description": "CLI tool for running Yeoman generators",
"license": "BSD-2-Clause",
"repository": "yeoman/yo",
"homepage": "http://yeoman.io",
"author": "Yeoman",
"main": "lib",
"bin": {
"yo": "lib/cli.js",
"yo-complete": "lib/completion/index.js"
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
},
"scripts": {
"postinstall": "yodoctor",
"postupdate": "yodoctor",
"pretest": "xo",
"test": "nyc mocha --timeout=30000",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"lib"
],
"keywords": [
"cli-app",
"cli",
"front-end",
"development",
"dev",
"build",
"web",
"tool",
"scaffold",
"stack",
"yeoman",
"generator",
"generate",
"app",
"boilerplate"
],
"dependencies": {
"async": "^3.2.2",
"chalk": "^4.1.2",
"cli-list": "^0.2.0",
"configstore": "^5.0.1",
"cross-spawn": "^7.0.3",
"figures": "^3.2.0",
"fullname": "^4.0.1",
"global-agent": "^3.0.0",
"global-tunnel-ng": "^2.7.1",
"got": "^11.8.6",
"humanize-string": "^2.1.0",
"inquirer": "^8.2.0",
"lodash": "^4.17.15",
"meow": "^5.0.0",
"npm-keyword": "^6.1.0",
"open": "^8.4.0",
"package-json": "^7.0.0",
"parse-help": "^1.0.0",
"read-pkg-up": "^7.0.1",
"root-check": "^1.0.0",
"sort-on": "^4.1.1",
"string-length": "^4.0.2",
"tabtab": "^1.3.2",
"titleize": "^2.1.0",
"update-notifier": "^5.1.0",
"user-home": "^2.0.0",
"yeoman-character": "^1.0.0",
"yeoman-doctor": "^5.0.0",
"yeoman-environment": "^4.0.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"coveralls": "^3.0.2",
"mocha": "^9.1.3",
"mockery": "^2.0.0",
"nock": "^13.2.1",
"nyc": "^15.1.0",
"proxyquire": "^2.0.1",
"registry-url": "^5.1.0",
"sinon": "^12.0.1",
"xo": "0.38.0"
},
"resolutions": {
"natives": "1.1.3"
},
"tabtab": {
"yo": [
"-f",
"--force",
"--version",
"--no-color",
"--generators",
"--local-only"
]
},
"xo": {
"space": true,
"overrides": [
{
"files": "test/**",
"envs": [
"node",
"mocha"
]
}
],
"rules": {
"promise/prefer-await-to-then": 0,
"unicorn/no-array-reduce": "off"
}
}
}