-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.05 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
{
"name": "base-pipeline",
"description": "base-methods plugin that adds pipeline and plugin methods for dynamically composing streaming plugin pipelines.",
"version": "0.3.2",
"homepage": "https://github.com/node-base/base-pipeline",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "node-base/base-pipeline",
"bugs": {
"url": "https://github.com/node-base/base-pipeline/issues"
},
"license": "MIT",
"files": [
"index.js",
"utils.js"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"base-option": "^0.8.2",
"extend-shallow": "^2.0.1",
"is-valid-app": "^0.1.2",
"kind-of": "^3.0.3",
"lazy-cache": "^2.0.1",
"stream-combiner": "^0.2.2",
"through2": "^2.0.1"
},
"devDependencies": {
"base": "^0.8.1",
"base-config": "^0.5.2",
"base-fs": "^0.3.4",
"base-plugins": "^0.4.12",
"base-runtimes": "^0.1.11",
"base-task": "^0.5.0",
"buffer-equal": "^1.0.0",
"graceful-fs": "^4.1.4",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-format-md": "^0.1.9",
"gulp-istanbul": "^0.10.4",
"gulp-mocha": "^2.2.0",
"minimist": "^1.2.0",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"should": "^8.4.0",
"sinon": "^1.17.4",
"vinyl": "^1.1.1"
},
"keywords": [
"api",
"app",
"application",
"base",
"baseplugin",
"building-blocks",
"create",
"file",
"framework",
"fs",
"pipeline",
"plugin",
"plugins",
"system",
"tool",
"toolkit",
"tools",
"vinyl"
],
"verb": {
"run": true,
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"base-cli",
"base-config",
"base-data",
"base-methods",
"base-options",
"base-plugins",
"base-store"
]
},
"reflinks": [
"verb"
],
"lint": {
"reflinks": true
}
}
}