-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbower.json
68 lines (68 loc) · 1.35 KB
/
bower.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
{
"name": "swiftlow",
"description": "A notes editor for agile software developers.",
"main": "app/app.js",
"authors": [
"Francesco Tucceri <fradot>"
],
"license": "MIT",
"keywords": [
"angular",
"notepad",
"develper",
"agile",
"developer",
"ES6"
],
"homepage": "https://github.com/fradot/swiftlow",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests",
"app_spec"
],
"dependencies": {
"bootstrap": "^3.3.7",
"animate.css": "^3.5.2",
"font-awesome": "fontawesome#^4.7.0",
"tinymce": "^4.7.12"
},
"overrides": {
"bootstrap": {
"main": [
"dist/js/*.min.js",
"dist/css/*.min.css",
"dist/fonts/*"
]
},
"jquery": {
"main": [
"dist/jquery.min.js"
]
},
"animate.css": {
"main": [
"animate.min.css"
]
},
"font-awesome": {
"main": [
"css/font-awesome.min.css",
"fonts/*"
]
},
"tinymce": {
"main": [
"tinymce.min.js",
"jquery.tinymce.min.js",
"plugins/{link,code}/*",
"skins/lightgray/{fonts,img}/*",
"skins/lightgray/{content.inline.min.css,content.min.css,skin.ie7.min.css,skin.min.css,skin.mobile.min.css}",
"themes/{inlite,mobile,modern}/*"
]
}
}
}