-
Notifications
You must be signed in to change notification settings - Fork 144
/
build.json
47 lines (47 loc) · 988 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
43
44
45
46
47
{
"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" : {
"exclude": [
"./amplify-vsdoc.js"
]
},
"anvil.token": {
"sourceData": {
"hello": "world"
}
},
"anvil.headers": {
"headers": {
"amplify.core.*": "core-header.js",
"amplify.request.*": "request-header.js",
"amplify.store.*": "store-header.js"
}
},
"extensions": {
"local": [ "anvil.uglify" ]
},
"dependencies": [ "anvil.jshint", "anvil.uglify", "anvil.token", "anvil.headers" ]
}