-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
44 lines (44 loc) · 922 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
{
"name": "wiredep",
"version": "4.0.0",
"main": "./wiredep.js",
"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"
],
"license": "MIT",
"scripts": {
"test": "jshint *.js lib/*.js test/*.js && NODE_ENV=test mocha -R spec",
"coverage": "istanbul cover _mocha -- -R spec"
},
"dependencies": {
"bower-config": "^1.3.0",
"glob": "^7.0.3",
"lodash": "^4.6.1",
"propprop": "^0.3.0",
"through2": "^2.0.1",
"wiredep-cli": "^0.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"fs-extra": "^0.26.7",
"istanbul": "^0.4.2",
"jshint": "*",
"mocha": "*"
}
}