-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbower.json
executable file
·70 lines (70 loc) · 1.45 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
69
70
{
"name": "xml-rpc-js-client",
"version": "0.0.0",
"description": "Chrome application to explore and test XML-RPC servers",
"keywords": [
"xml-rpc",
"chrome"
],
"authors": [
"gianluca troiani [[email protected]",
"@giatro]"
],
"license": "public domain",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"foundation": "~5.0.2",
"font-awesome": "~4.0.3",
"jquery-xmlrpc": "~0.4.3",
"js-object-renderer": "https://github.com/huafu/js-object-renderer.git",
"xml-pretty-print": "https://github.com/aishwar/xml-pretty-print.git",
"angular": "~1.2.10"
},
"resolutions": {
"jquery": ">= 2.0.0"
},
"exportsOverride": {
"foundation": {
"js": [
"js/foundation.js"
],
"scss": [
"scss/*.scss"
],
"scss/foundation": [
"scss/foundation/*.scss"
],
"scss/foundation/components": [
"scss/foundation/components/*.scss"
]
},
"font-awesome": {
"css": "css/*.css",
"fonts": "fonts/*"
},
"js-object-renderer": {
".": [
"src/css/*.css",
"src/js/*.js"
],
"lib": "src/js/lib/*.js"
},
"modernizr": {
".": "modernizr.js"
},
"jquery-xmlrpc": {
".": "jquery.xmlrpc.js"
},
"jquery-mockjax": {},
"xml-pretty-print": {
".": "xml-prettify.js"
}
}
}