forked from yeoman/environment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.16 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.16 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
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
117
118
119
120
{
"name": "yeoman-environment",
"version": "3.0.0",
"description": "Handles the lifecyle and bootstrapping of generators in a specific environment",
"homepage": "http://yeoman.io",
"author": "Yeoman",
"bin": {
"yoe": "cli/index.js"
},
"files": [
"cli",
"lib"
],
"main": "lib/environment.js",
"keywords": [
"development",
"dev",
"build",
"tool",
"cli",
"scaffold",
"scaffolding",
"generate",
"generator",
"yeoman",
"app"
],
"license": "BSD-2-Clause",
"repository": "yeoman/environment",
"engines": {
"node": ">=12.10.0"
},
"scripts": {
"pretest": "xo",
"fix": "xo --fix",
"test": "nyc mocha",
"test-base": "nyc mocha test/environment*.js test/store.js test/util.js test/adapter.js",
"test-environment": "nyc mocha test/environment.js",
"test-generators": "nyc mocha test/generators.js",
"test-namespace": "nyc mocha test/namespace.js test/flags.js",
"test-repository": "nyc mocha test/repository.js",
"test-resolver": "nyc mocha test/resolver.js",
"doc": "jsdoc -c jsdoc.json -d ../yeoman-environment-doc",
"doc:prettier": "prettier ../yeoman-environment-doc --write --ignore-path .prettierignore-doc",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"@npmcli/arborist": "^2.2.2",
"are-we-there-yet": "^1.1.5",
"arrify": "^2.0.1",
"chalk": "^4.1.0",
"cli-table": "^0.3.1",
"commander": "7.1.0",
"dateformat": "^4.5.0",
"debug": "^4.1.1",
"diff": "^5.0.0",
"error": "^10.4.0",
"escape-string-regexp": "^4.0.0",
"execa": "^5.0.0",
"find-up": "^5.0.0",
"globby": "^11.0.1",
"grouped-queue": "^2.0.0",
"inquirer": "^7.1.0",
"is-scoped": "^2.1.0",
"istextorbinary": "^5.7.0",
"lodash": "^4.17.10",
"log-symbols": "^4.0.0",
"mem-fs": "^1.1.0",
"mem-fs-editor": "^8.0.0",
"minimatch": "^3.0.4",
"npmlog": "^4.1.2",
"pacote": "^11.2.6",
"pipeline-pipe": "^0.1.5",
"preferred-pm": "^3.0.3",
"pretty-bytes": "^5.3.0",
"read-chunk": "^3.2.0",
"semver": "^7.1.3",
"slash": "^3.0.0",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0",
"through2": "^4.0.2",
"untildify": "^4.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"cross-spawn": "^7.0.1",
"fs-extra": "^9.0.1",
"jsdoc": "^3.6.3",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"sinon-test": "^3.0.0",
"tui-jsdoc-template": "^1.2.2",
"xo": "^0.37.1",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^3.0.0",
"yeoman-generator": "^5.0.0",
"yeoman-test": "^4.0.2"
},
"xo": {
"space": true,
"envs": [
"node",
"mocha"
],
"rules": {
"import/no-dynamic-require": "off",
"prefer-spread": "off",
"padding-line-between-statements": "off",
"unicorn/no-hex-escape": "off",
"unicorn/prefer-reflect-apply": "off",
"prefer-rest-params": "off",
"node/prefer-promises/fs": "off",
"promise/prefer-await-to-then": "off",
"unicorn/no-array-reduce": "off",
"unicorn/import-style": "off"
}
}
}