-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 2.31 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
{
"name": "scaffold",
"description": "Conventions and API for creating declarative configuration objects for project scaffolds - similar in format to a grunt task, but more portable, generic and can be used by any build system or generator - even gulp.",
"version": "0.2.13",
"homepage": "https://github.com/jonschlinkert/scaffold",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/scaffold",
"bugs": {
"url": "https://github.com/jonschlinkert/scaffold/issues"
},
"license": "MIT",
"files": [
"index.js",
"LICENSE",
"README.md",
"utils.js"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "gulp"
},
"dependencies": {
"base": "^0.11.1",
"base-plugins": "^0.4.13",
"define-property": "^0.2.5",
"expand-target": "^0.6.4",
"expand-utils": "^0.2.2",
"extend-shallow": "^2.0.1",
"is-scaffold": "^0.1.1",
"isobject": "^2.1.0",
"lazy-cache": "^2.0.1"
},
"devDependencies": {
"global-modules": "^0.2.2",
"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",
"mocha": "^2.5.3",
"repeat-string": "^1.5.4",
"should": "^9.0.2",
"stringify-object": "^2.4.0"
},
"keywords": [
"app",
"boilerplate",
"boilerplates",
"bootstrap",
"build",
"cli",
"dev",
"development",
"framework",
"generate",
"generator",
"grunt",
"gulpfriendly",
"plugin",
"project",
"scaffold",
"scaffolding",
"skeleton",
"start",
"starter",
"system",
"template",
"tool",
"toolkit",
"yeoman"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"assemble",
"boilerplate",
"generate",
"templates",
"update",
"verb"
]
},
"reflinks": [
"assemble",
"boilerplate",
"expand-files",
"expand-target",
"generate",
"grunt",
"gulp",
"metalsmith",
"scaffold",
"templates",
"verb",
"verb-readme-generator",
"yeoman"
],
"lint": {
"reflinks": true
}
}
}