-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.29 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
{
"name": "base-fs-conflicts",
"description": "Detect potential file system conflicts and if necessary prompt the user before overwriting files.",
"version": "0.1.9",
"homepage": "https://github.com/node-base/base-fs-conflicts",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "node-base/base-fs-conflicts",
"bugs": {
"url": "https://github.com/node-base/base-fs-conflicts/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib",
"LICENSE",
"README.md"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"base-cwd": "^0.2.1",
"bytes": "^2.3.0",
"cli-table": "^0.3.1",
"component-emitter": "^1.2.1",
"dateformat-light": "^1.0.14",
"detect-conflict": "^1.0.0",
"diff": "^2.2.2",
"extend-shallow": "^2.0.1",
"inquirer2": "^0.1.1",
"istextorbinary": "^1.0.2",
"lazy-cache": "^2.0.1",
"log-utils": "^0.1.4",
"read-chunk": "^2.0.0",
"set-blocking": "^2.0.0",
"through2": "^2.0.1"
},
"devDependencies": {
"base": "^0.8.1",
"base-fs": "^0.3.1",
"base-option": "^0.8.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",
"gulp-unused": "^0.1.2",
"mocha": "^2.5.3",
"verb-readme-generator": "^0.1.14"
},
"keywords": [
"api",
"app",
"application",
"base",
"baseplugin",
"building-blocks",
"conflict",
"conflicts",
"create",
"error",
"exist",
"existing",
"file",
"filepath",
"files",
"framework",
"fs",
"gulpfriendly",
"overwrite",
"path",
"plugin",
"plugins",
"stream",
"tool",
"toolkit",
"tools",
"vinyl",
"warn",
"warning",
"write"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"assemble",
"generate",
"templates",
"verb"
]
},
"reflinks": [
"assemble",
"base",
"generate",
"verb",
"verb-readme-generator",
"yeoman-generator"
],
"lint": {
"reflinks": true
}
}
}