forked from mikehostetler/amplify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.json
42 lines (42 loc) · 876 Bytes
/
build.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
{
"source": "src",
"spec": "test",
"output": {
"full": "lib",
"partial": {
"../vsdoc/amplify-vsdoc.js": "./lib"
}
},
"anvil.jshint": {
"exclude": [ "amplify-vsdoc.js" ],
"ignore": [
{ "reason": "Expected a conditional expression and instead saw an assignment." },
{ "reason": "Value of 'error' may be overwritten in IE." },
{ "file": "amplify-vsdoc.js", "reason": "Mixed spaces and tabs." }
],
"options": {
"globals": {
"jQuery": false
},
"maxdepth": 5,
"maxstatements": 35,
"maxcomplexity": 15
}
},
"anvil.uglify" : {
"all": true
},
"anvil.token": {
"sourceData": {
"hello": "world"
}
},
"anvil.headers": {
"headers": {
"amplify.core.*": "core-header.js",
"amplify.request.*": "request-header.js",
"amplify.store.*": "store-header.js"
}
},
"dependencies": [ "anvil.jshint", "anvil.uglify" ]
}