-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
129 lines (129 loc) · 2.64 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
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
121
122
123
124
125
126
127
128
129
{
"name": "base-generators",
"description": "Adds project-generator support to your `base` application.",
"version": "0.4.6",
"homepage": "https://github.com/node-base/base-generators",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "node-base/base-generators",
"bugs": {
"url": "https://github.com/node-base/base-generators/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib",
"LICENSE",
"README.md"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"async-each-series": "^1.1.0",
"base-compose": "^0.2.1",
"base-cwd": "^0.3.1",
"base-data": "^0.6.0",
"base-env": "^0.3.0",
"base-option": "^0.8.4",
"base-pkg": "^0.2.4",
"base-plugins": "^0.4.13",
"base-task": "^0.6.1",
"debug": "^2.2.0",
"define-property": "^0.2.5",
"extend-shallow": "^2.0.1",
"global-modules": "^0.2.2",
"is-valid-app": "^0.2.0",
"is-valid-instance": "^0.2.0",
"kind-of": "^3.0.3",
"lazy-cache": "^2.0.1",
"mixin-deep": "^1.1.3"
},
"devDependencies": {
"assemble-core": "^0.23.0",
"base": "^0.11.1",
"base-config-process": "^0.1.7",
"base-runtimes": "^0.1.11",
"cross-spawn": "^4.0.0",
"fs-exists-sync": "^0.1.0",
"generate-foo": "^0.1.5",
"generator-util": "^0.2.9",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-format-md": "^0.1.9",
"gulp-istanbul": "^1.0.0",
"gulp-mocha": "^2.2.0",
"gulp-unused": "^0.1.2",
"is-absolute": "^0.2.5",
"minimist": "^1.2.0",
"mocha": "^2.5.3",
"npm-install-global": "^0.1.2",
"resolve": "^1.1.7"
},
"keywords": [
"api",
"app",
"application",
"base",
"baseplugin",
"boilerplate",
"building-blocks",
"create",
"framework",
"generate",
"generator",
"generators",
"init",
"plugin",
"plugins",
"project",
"scaffold",
"tool",
"toolkit",
"tools",
"yeoman",
"yo"
],
"lintDeps": {
"ignore": [
"docs",
"examples/generators"
]
},
"verb": {
"toc": true,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"highlight": "base-task",
"list": [
"bach",
"base",
"base-fs",
"base-pipeline",
"base-plugins",
"base-task",
"composer",
"gulp"
]
},
"reflinks": [
"bach",
"composer",
"gulp",
"verb",
"verb-readme-generator",
"generate",
"assemble",
"update"
]
}
}