-
-
Notifications
You must be signed in to change notification settings - Fork 405
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.83 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.83 KB
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
{
"name": "yo",
"version": "7.0.0",
"description": "CLI tool for running Yeoman generators",
"keywords": [
"cli-app",
"cli",
"front-end",
"development",
"dev",
"build",
"web",
"tool",
"scaffold",
"stack",
"yeoman",
"generator",
"generate",
"app",
"boilerplate"
],
"homepage": "http://yeoman.io",
"repository": "yeoman/yo",
"license": "BSD-2-Clause",
"author": "Yeoman",
"type": "module",
"main": "lib",
"bin": {
"yo": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"coverage": "c8 report --reporter=text-lcov | coveralls",
"postinstall": "yodoctor",
"postupdate": "yodoctor",
"pretest": "xo",
"test": "c8 esmocha"
},
"resolutions": {
"natives": "1.1.3"
},
"dependencies": {
"@yeoman/adapter": "^4.0.2",
"@yeoman/types": "^1.10.3",
"chalk": "^5.6.2",
"cli-list": "^1.0.0",
"configstore": "^8.0.0",
"cross-spawn": "^7.0.6",
"figures": "^6.1.0",
"fullname": "^5.0.0",
"global-agent": "^3.0.0",
"humanize-string": "^3.1.0",
"lodash": "^4.17.23",
"meow": "^14.1.0",
"npm-keyword": "^8.0.0",
"open": "^11.0.0",
"package-json": "^10.0.1",
"parse-help": "^2.0.0",
"read-package-up": "^12.0.0",
"root-check": "^2.0.0",
"sort-on": "^7.0.0",
"string-length": "^7.0.1",
"titleize": "^4.0.0",
"update-notifier": "^7.3.1",
"yeoman-character": "^2.0.0",
"yeoman-doctor": "^6.0.0",
"yeoman-environment": "^6.0.0",
"yosay": "^3.0.0"
},
"devDependencies": {
"@node-loaders/esbuild": "^2.0.0",
"c8": "^11.0.0",
"coveralls": "^3.1.1",
"esmocha": "^5.0.0",
"globals": "^17.3.0",
"nock": "^15.0.0",
"registry-url": "^7.2.0",
"sinon": "^21.0.1",
"xo": "^1.2.3"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
}
}