-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
108 lines (108 loc) · 2.22 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
{
"name": "copy",
"description": "Copy files or directories using globs.",
"version": "0.3.2",
"homepage": "https://github.com/jonschlinkert/copy",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Leathem (blog.bleathem.ca)",
"Brian Woodward (https://twitter.com/doowb)",
"gaozhenze (https://github.com/SoulRIver2015)",
"Guilherme Santiago (https://gsantiago.github.io)",
"Joakim Carlstein (http://joakim.beng.se)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
],
"repository": "jonschlinkert/copy",
"bugs": {
"url": "https://github.com/jonschlinkert/copy/issues"
},
"license": "MIT",
"files": [
"bin",
"index.js",
"lib"
],
"main": "index.js",
"bin": {
"copy": "bin/cli.js",
"copy-cli": "bin/cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"async-each": "^1.0.0",
"bluebird": "^3.4.1",
"extend-shallow": "^2.0.1",
"file-contents": "^0.3.1",
"glob-parent": "^2.0.0",
"graceful-fs": "^4.1.4",
"has-glob": "^0.1.1",
"is-absolute": "^0.2.5",
"lazy-cache": "^2.0.1",
"log-ok": "^0.1.1",
"matched": "^0.4.1",
"mkdirp": "^0.5.1",
"resolve-dir": "^0.1.0",
"to-file": "^0.2.0"
},
"devDependencies": {
"assert-fs": "^0.1.0",
"assert-path": "^0.1.0",
"delete": "^0.3.2",
"gulp": "^3.9.1",
"gulp-format-md": "^0.1.9",
"gulp-unused": "^0.1.2",
"is-buffer": "^1.1.3",
"look-up": "^0.8.3",
"minimist": "^1.2.0",
"mocha": "^2.5.3"
},
"keywords": [
"async",
"copy",
"file",
"file-system",
"fs",
"glob",
"move",
"path",
"pattern",
"promise",
"stream",
"sync",
"system"
],
"verb": {
"run": true,
"toc": true,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"expand-config",
"expand-files",
"expand-target",
"expand-task",
"export-files",
"write"
]
},
"reflinks": [
"gulp",
"verb",
"verb-readme-generator"
],
"lint": {
"reflinks": true
}
}
}