1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "type": "object",
- "properties": {
- "test": {},
- "include": {},
- "exclude": {},
- "cache": {
- "oneOf": [
- { "type": "boolean" },
- { "type": "string" }
- ]
- },
- "cacheKeys": {
- "instanceof": "Function"
- },
- "parallel": {
- "oneOf": [
- { "type": "boolean" },
- { "type": "integer" }
- ]
- },
- "sourceMap": {
- "type": "boolean"
- },
- "minify": {
- "instanceof": "Function"
- },
- "uglifyOptions": {
- "additionalProperties": true,
- "type": "object",
- "properties": {
- "ecma": {
- "type": "integer",
- "minimum": 5,
- "maximum": 8
- },
- "warnings": {
- "type": ["boolean", "string"],
- "enum": [true, false, "verbose"]
- },
- "ie8": {
- "type": "boolean"
- },
- "parse": {
- "type": "object"
- },
- "compress": {
- "type": ["boolean", "object"]
- },
- "mangle": {
- "type": ["boolean", "object"],
- "properties": {
- "properties": {
- "type": ["boolean", "object"]
- }
- }
- },
- "output": {
- "type": ["object", "null"]
- },
- "toplevel": {
- "type": "boolean"
- },
- "nameCache": {
- "type": ["object", "null"]
- }
- }
- },
- "extractComments": {},
- "warningsFilter": {}
- },
- "additionalProperties": false
- }
|