-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.34 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.34 KB
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
{
"name": "map-dest",
"description": "Map the destination path for a file based on the given source path and options.",
"version": "0.1.8",
"homepage": "https://github.com/jonschlinkert/map-dest",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/map-dest",
"bugs": {
"url": "https://github.com/jonschlinkert/map-dest/issues"
},
"license": "MIT",
"files": [
"index.js",
"utils.js"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"extend-shallow": "^2.0.1",
"lazy-cache": "^0.2.4",
"normalize-path": "^2.0.0",
"resolve-dir": "^0.1.0"
},
"devDependencies": {
"global-modules": "^0.2.0",
"gulp": "^3.9.0",
"gulp-istanbul": "^0.10.0",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"jshint-stylish": "^2.0.1",
"mocha": "*",
"should": "*"
},
"keywords": [
"config",
"configuration",
"dest",
"destination",
"expand",
"files",
"files array",
"files object",
"normalize",
"options",
"src",
"src-dest",
"target",
"task"
],
"verb": {
"related": {
"list": [
"files-objects",
"expand-config",
"expand-files",
"expand-task",
"expand-target"
]
}
}
}