forked from yeoman/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2 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
{
"name": "yeoman-generator",
"version": "2.0.3",
"description": "Rails-inspired generator system that provides scaffolding for your apps",
"license": "BSD-2-Clause",
"repository": "yeoman/generator",
"homepage": "http://yeoman.io",
"author": "Yeoman",
"main": "lib",
"engines": {
"node": ">=4"
},
"scripts": {
"pretest": "xo",
"test": "nyc mocha",
"doc": "jsdoc -c jsdoc.json",
"prepublish": "nsp check",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"lib"
],
"keywords": [
"development",
"dev",
"build",
"tool",
"cli",
"scaffold",
"scaffolding",
"generate",
"generator",
"yeoman",
"app"
],
"dependencies": {
"async": "^2.6.0",
"chalk": "^2.3.0",
"cli-table": "^0.3.1",
"cross-spawn": "^5.1.0",
"dargs": "^5.1.0",
"dateformat": "^3.0.2",
"debug": "^3.1.0",
"detect-conflict": "^1.0.0",
"error": "^7.0.2",
"find-up": "^2.1.0",
"github-username": "^4.0.0",
"istextorbinary": "^2.1.0",
"lodash": "^4.17.4",
"make-dir": "^1.1.0",
"mem-fs-editor": "^3.0.2",
"minimist": "^1.2.0",
"pretty-bytes": "^4.0.2",
"read-chunk": "^2.1.0",
"read-pkg-up": "^3.0.0",
"rimraf": "^2.6.2",
"run-async": "^2.0.0",
"shelljs": "^0.8.0",
"text-table": "^0.2.0",
"through2": "^2.0.0",
"yeoman-environment": "^2.0.5"
},
"devDependencies": {
"coveralls": "^3.0.0",
"inquirer": "^4.0.1",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
"mockery": "^2.1.0",
"nock": "^9.1.6",
"nsp": "^3.1.0",
"nyc": "^11.4.1",
"proxyquire": "^1.8.0",
"sinon": "^4.0.0",
"tui-jsdoc-template": "^1.2.2",
"xo": "^0.18.1",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"xo": {
"space": true,
"rules": {
"promise/no-callback-in-promise": "off"
},
"overrides": [
{
"files": "test/**",
"envs": [
"node",
"mocha"
]
}
]
}
}