forked from taptapship/wiredep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 911 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
{
"name": "wiredep",
"main": "./wiredep.js",
"version": "1.4.4",
"description": "Wire Bower dependencies to your source code.",
"repository": "taptapship/wiredep",
"author": {
"name": "Stephen Sawchuk",
"email": "[email protected]"
},
"keywords": [
"bower",
"package",
"management",
"inject",
"script",
"dependencies"
],
"files": [
"lib/",
"LICENSE",
"wiredep.js"
],
"licenses": [
{
"type": "MIT"
}
],
"scripts": {
"test": "grunt"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-cli": "~0.1.7",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-watch": "~0.5.0",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-clean": "~0.5.0"
},
"dependencies": {
"lodash": "~1.3.0",
"chalk": "~0.1.1",
"glob": "~3.2.8",
"through2": "~0.4.1"
}
}