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
|
{
"name": "mach2",
"version": "0.0.1",
"homepage": "https://github.com/michael-ball/mach2",
"authors": [
"Michaël Ball"
],
"description": "Lightweight media server",
"main": "mach2.py",
"license": "MIT",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"angular": "1.4.8",
"bootstrap": "3.3.5",
"moment": "~2.10.6",
"angular-moment": "~0.10.3",
"angular-ui-router": "~0.2.15",
"angular-bootstrap": "~0.14.3",
"angular-resource": "~1.4.8",
"moment-timezone": "~0.4.1"
},
"resolutions": {
"angular": "1.3.10"
},
"exportsOverride": {
"bootstrap": {
"js": "**/bootstrap*.js",
"css": "**/*.css*",
"fonts": "**/fonts"
}
}
}
|