forked from yeoman/environment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.65 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
{
"name": "yeoman-environment",
"version": "2.0.2",
"description": "Handles the lifecyle and bootstrapping of generators in a specific environment",
"homepage": "http://yeoman.io",
"author": "Yeoman",
"files": [
"lib"
],
"main": "lib/environment.js",
"keywords": [
"development",
"dev",
"build",
"tool",
"cli",
"scaffold",
"scaffolding",
"generate",
"generator",
"yeoman",
"app"
],
"license": "BSD-2-Clause",
"repository": "yeoman/environment",
"scripts": {
"test": "xo && gulp",
"doc": "jsdoc -c ./jsdoc.json ./readme.md",
"benchmark": "matcha benchmark/**",
"prepublish": "gulp prepublish"
},
"dependencies": {
"chalk": "^1.0.0",
"debug": "^2.0.0",
"diff": "^3.2.0",
"escape-string-regexp": "^1.0.2",
"globby": "^6.1.0",
"grouped-queue": "^0.3.0",
"inquirer": "^3.0.1",
"is-scoped": "^1.0.0",
"lodash": "^4.11.1",
"log-symbols": "^1.0.1",
"mem-fs": "^1.1.0",
"text-table": "^0.2.0",
"untildify": "^3.0.2"
},
"devDependencies": {
"coveralls": "^2.11.6",
"gulp": "^3.6.0",
"gulp-coveralls": "^0.1.0",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-nsp": "^2.1.0",
"gulp-plumber": "^1.0.0",
"istanbul": "^0.4.1",
"jsdoc": "^3.3.0-alpha9",
"matcha": "^0.7.0",
"mocha": "^3.2.0",
"shelljs": "^0.7.0",
"sinon": "^2.1.0",
"sinon-test": "^1.0.1",
"xo": "^0.18.1",
"yeoman-assert": "^3.0.0",
"yeoman-generator": "^1.1.0"
},
"xo": {
"space": true,
"envs": [
"node",
"mocha"
],
"rules": {
"import/no-dynamic-require": "off"
}
}
}