forked from taptapship/wiredep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 947 Bytes
/
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
{
"name": "wiredep",
"version": "1.8.5",
"main": "./wiredep.js",
"bin": {
"wiredep": "./wiredep-cli.js"
},
"description": "Wire Bower dependencies to your source code.",
"repository": "taptapship/wiredep",
"author": {
"name": "Stephen Sawchuk",
"email": "sawchuk@gmail.com"
},
"keywords": [
"bower",
"package",
"management",
"inject",
"script",
"dependencies"
],
"files": [
"lib/",
"LICENSE",
"wiredep.js",
"wiredep-cli.js"
],
"licenses": [
{
"type": "MIT"
}
],
"scripts": {
"test": "jshint *.js lib/*.js test/*.js && NODE_ENV=test mocha -R spec"
},
"dependencies": {
"bower-config": "^0.5.0",
"chalk": "^0.5.1",
"glob": "^4.0.5",
"lodash": "^2.4.1",
"minimist": "^1.1.0",
"propprop": "^0.3.0",
"through2": "^0.6.1"
},
"devDependencies": {
"fs-extra": "^0.11.0",
"jshint": "*",
"mocha": "*"
}
}