forked from taptapship/wiredep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.02 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.02 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
{
"name": "require-wiredep",
"version": "0.1.4",
"main": "./require-wiredep.js",
"bin": {
"require-wiredep": "./require-wiredep-cli.js"
},
"description": "Inject require configs to your source code.",
"repository": "Krzysztof-Padol/require-wiredep",
"author": {
"name": "Krzysztof Padol",
"email": "krzysztof.padol@pearson.com"
},
"keywords": [
"require",
"require.js",
"management",
"inject",
"script",
"dependencies",
"karma",
"tests"
],
"files": [
"lib/",
"LICENSE",
"require-wiredep.js",
"require-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": "*"
}
}