forked from johnnyasantoss/wiredep-away
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "wiredep-away",
"version": "5.0.0",
"main": "./wiredep.js",
"description": "Wire bower-away dependencies to your source code.",
"repository": "azachar/wiredep-away",
"author": {
"name": "Andrej Zachar",
"email": "[email protected]"
},
"contributors": [{
"name": "Stephen Sawchuk",
"email": "[email protected]"
}],
"keywords": [
"bower",
"package",
"management",
"inject",
"script",
"dependencies"
],
"files": [
"lib/",
"LICENSE",
"wiredep.js"
],
"license": "MIT",
"scripts": {
"style": "jshint *.js lib/*.js test/*.js",
"setup": "cd test/fixture-away; yarn postinstall; cd cwd_includeself; yarn postinstall; cd ../glob_main; yarn postinstall; cd ../scope; yarn postinstall; cd ../scope-default; yarn postinstall; cd ../scope-empty; yarn postinstall",
"test": "NODE_ENV=test nyc mocha"
},
"dependencies": {
"bower-config": "^1.3.0",
"glob": "^7.1.3",
"lodash": "^4.17.11",
"propprop": "^0.3.1",
"through2": "^3.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"decache": "^4.5.1",
"fs-extra": "^7.0.1",
"jshint": "^2.10.1",
"mocha": "^5.2.0",
"nyc": "^13.2.0"
}
}