-
Notifications
You must be signed in to change notification settings - Fork 88
/
bower.json
58 lines (58 loc) · 1.03 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
{
"name": "keepnote",
"version": "0.7.9",
"authors": [
"Matt Rasmussen <[email protected]>"
],
"description": "Note-taking and organization",
"license": "MIT",
"homepage": "http://keepnote.org",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"bootstrap": "~3.2.0",
"jquery": "~2.1.1",
"backbone": "~1.1.2",
"react": "~0.12.2",
"wysihtml": "~0.4.17",
"xmldom": "~0.1.16"
},
"overrides": {
"bootstrap": {
"main": "dist/**/*.*",
"normalize": {
"css": [
"*.map",
"*.css"
],
"font": [
"*.eot",
"*.svg",
"*.ttf",
"*.woff"
]
}
},
"jquery": {
"main": "dist/**/*.*"
},
"react": {
"main": "*.js"
},
"wysihtml": {
"main": [
"dist/**/*.*",
"parser_rules/advanced_and_extended.js"
]
},
"xmldom": {
"main": ["dom.js"]
}
}
}