-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.49 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
{
"name": "normalize-config",
"description": "Normalize a declarative configuration with any combination of src-dest mappings, files arrays, files objects and options into a consistent format so the config can easily be passed to any build system.",
"version": "0.4.8",
"homepage": "https://github.com/jonschlinkert/normalize-config",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/normalize-config",
"bugs": {
"url": "https://github.com/jonschlinkert/normalize-config/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"extend-shallow": "^2.0.1",
"kind-of": "^3.0.2"
},
"devDependencies": {
"ansi-yellow": "^0.1.1",
"gulp": "^3.9.0",
"gulp-eslint": "^1.1.1",
"gulp-format-md": "^0.1.4",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"mocha": "^2.3.4",
"should": "^8.0.2"
},
"keywords": [
"config",
"configuration",
"dest",
"destination",
"expand",
"files",
"files array",
"files object",
"normalize",
"options",
"src",
"src-dest",
"target",
"task"
],
"verb": {
"related": {
"list": [
"scaffold",
"boilerplate",
"expand-config",
"expand-files",
"expand-target",
"expand-task"
]
},
"plugins": [
"gulp-format-md"
]
}
}