-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.32 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
{
"name": "oe-environment",
"version": "1.6.8",
"description": "Handles the lifecyle and bootstrapping of generators in a specific environment",
"author": "Yeoman",
"files": [
"lib"
],
"main": "lib/environment.js",
"keywords": [
"generator",
"app"
],
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "[email protected]:EdgeVerve/oe-environment.git"
},
"scripts": {
"test": "xo && gulp",
"doc": "jsdoc -c ./jsdoc.json ./readme.md"
},
"dependencies": {
"chalk": "1.1.3",
"debug": "2.6.9",
"diff": "3.5.0",
"escape-string-regexp": "1.0.5",
"globby": "6.1.0",
"grouped-queue": "0.3.3",
"inquirer": "6.5.2",
"lodash": "4.17.20",
"log-symbols": "1.0.2",
"mem-fs": "1.1.3",
"text-table": "0.2.0",
"untildify": "3.0.3"
},
"devDependencies": {
"coveralls": "3.0.9",
"gulp": "4.0.2",
"gulp-mocha": "7.0.2",
"gulp-plumber": "1.2.1",
"istanbul": "0.4.5",
"jsdoc": "3.6.3",
"matcha": "0.7.0",
"mocha": "7.0.0",
"shelljs": "0.7.8",
"sinon": "2.4.1",
"sinon-test": "1.0.2",
"xo": "0.25.3",
"yeoman-assert": "3.1.1",
"oe-generator": "^1.1.2"
},
"xo": {
"space": true,
"envs": [
"node",
"mocha"
],
"rules": {
"import/no-dynamic-require": "off"
}
}
}