-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 2.12 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
{
"name": "assemble-fs",
"description": "Light wrapper for vinyl-fs to add streams support in a way that plays nice with Assemble middleware.",
"version": "2.0.1",
"homepage": "https://github.com/assemble/assemble-fs",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
],
"repository": "assemble/assemble-fs",
"bugs": {
"url": "https://github.com/assemble/assemble-fs/issues"
},
"license": "MIT",
"files": [
"index.js",
"utils.js"
],
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "mocha test/{*.js,vfs/*.js}"
},
"dependencies": {
"lead": "^1.0.0",
"pumpify": "^1.5.1",
"readable-stream": "^3.0.6",
"stream-combiner": "^0.2.2",
"to-through": "^2.0.0",
"vinyl-fs": "^3.0.3"
},
"devDependencies": {
"expect": "^1.19.0",
"graceful-fs": "^4.1.15",
"gulp-format-md": "^2.0.0",
"mississippi": "^3.0.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"sinon": "^7.1.1",
"templates": "file:../../../templates/templates-next",
"vinyl": "^2.2.0"
},
"keywords": [
"assemble",
"boilerplate",
"build",
"cli",
"cli-app",
"command-line",
"copy",
"create",
"dest",
"dev",
"development",
"file",
"file-system",
"framework",
"front",
"frontend",
"fs",
"plugin",
"project",
"projects",
"scaffold",
"scaffolder",
"scaffolding",
"src",
"stream",
"streams",
"template",
"templates",
"vinyl",
"vinyl-fs",
"webapp",
"yeoman",
"yo"
],
"lintDeps": {
"devDependencies": {
"files": {
"patterns": [
"test/vfs/**/*.js"
]
}
}
},
"verb": {
"run": true,
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"generate",
"update",
"verb"
]
},
"lint": {
"reflinks": true
}
}
}