forked from QubitProducts/bamboo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.24 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "angular-boot",
"description": "",
"version": "0.1.0",
"dependencies": {
"lodash": "2.4.1",
"jquery": "~2.1.0",
"angular-moment": "~0.7.0",
"moment": "~2.6.0"
},
"devDependencies": {
"browserify": "~3.38.0",
"expect.js": "^0.3.1",
"grunt": "~0.4.4",
"grunt-browserify": "~2.0.8",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-sass": "~0.7.3",
"grunt-contrib-watch": "~0.6.1",
"hbsfy": "1.3.2",
"karma": "~0.12.14",
"karma-bro": "^0.2.2",
"karma-chrome-launcher": "^0.1.3",
"mocha": "~1.18.2",
"napa": "~0.4.1",
"partialify": "*",
"uglifyify": "^2.5.0",
"watchify": "^0.8.2"
},
"script": {
"install": "napa"
},
"napa": {
"angular-strap": "mgcrea/angular-strap#v2.0.5",
"angular": "angular/bower-angular#v1.2.22",
"angular-animate": "angular/bower-angular-animate#v1.2.22-build.376+sha.93b0c2d",
"angular-resource": "angular/bower-angular-resource#v1.2.22-build.376+sha.93b0c2d",
"angular-ui-router": "angular-ui/ui-router#0.2.10"
},
"shims": {
"jquery": {
"path": "./node_modules/jquery/dist/jquery.js",
"exports": "$"
},
"angular": {
"path": "./node_modules/angular/angular.js",
"exports": "angular"
},
"angular-resource": {
"path": "./node_modules/angular-resource/angular-resource.js",
"depends": [
"angular"
]
},
"angular-animate": {
"path": "./node_modules/angular-animate/angular-animate.js",
"depends": [
"angular"
]
},
"angular-strap": {
"path": "./node_modules/angular-strap/dist/angular-strap.js",
"depends": [
"angular",
"angular-animate",
"angular-strap-tpl"
]
},
"angular-strap-tpl": {
"path": "./node_modules/angular-strap/dist/angular-strap.tpl.js"
},
"angular-ui-router": {
"path": "./node_modules/angular-ui-router/release/angular-ui-router.js",
"depends": [
"angular"
]
},
"moment": {
"path": "./node_modules/moment/moment.js",
"exports": "moment"
},
"angular-moment": {
"path": "./node_modules/angular-moment/angular-moment.js",
"depends": [
"moment",
"angular"
]
}
}
}