Permalink
Cannot retrieve contributors at this time
{ | |
"name": "aurelia-selectize", | |
"type": "project:application", | |
"bundler": { | |
"id": "cli", | |
"displayName": "Aurelia-CLI" | |
}, | |
"build": { | |
"targets": [ | |
{ | |
"id": "web", | |
"displayName": "Web", | |
"index": "index.html", | |
"baseDir": ".", | |
"output": "scripts" | |
} | |
], | |
"options": { | |
"minify": "stage & prod", | |
"sourcemaps": "dev & stage" | |
}, | |
"bundles": [ | |
{ | |
"name": "app-bundle.js", | |
"source": [ | |
"[**/*.js]", | |
"**/*.{css,html}" | |
] | |
}, | |
{ | |
"name": "vendor-bundle.js", | |
"prepend": [ | |
"node_modules/bluebird/js/browser/bluebird.core.js", | |
"node_modules/aurelia-cli/lib/resources/scripts/configure-bluebird.js", | |
"node_modules/requirejs/require.js" | |
], | |
"dependencies": [ | |
"aurelia-binding", | |
"aurelia-bootstrapper", | |
"aurelia-dependency-injection", | |
"aurelia-event-aggregator", | |
"aurelia-framework", | |
"aurelia-history", | |
"aurelia-history-browser", | |
"aurelia-loader", | |
"aurelia-loader-default", | |
"aurelia-logging", | |
"aurelia-logging-console", | |
"aurelia-metadata", | |
"aurelia-pal", | |
"aurelia-pal-browser", | |
"aurelia-path", | |
"aurelia-polyfills", | |
"aurelia-route-recognizer", | |
"aurelia-router", | |
"aurelia-task-queue", | |
"aurelia-templating", | |
"aurelia-templating-binding", | |
{ | |
"name": "aurelia-templating-resources", | |
"path": "../node_modules/aurelia-templating-resources/dist/amd", | |
"main": "aurelia-templating-resources" | |
}, | |
{ | |
"name": "aurelia-templating-router", | |
"path": "../node_modules/aurelia-templating-router/dist/amd", | |
"main": "aurelia-templating-router" | |
}, | |
{ | |
"name": "aurelia-testing", | |
"path": "../node_modules/aurelia-testing/dist/amd", | |
"main": "aurelia-testing", | |
"env": "dev" | |
}, | |
"jquery", | |
"text", | |
{ | |
"name": "selectize", | |
"main": "dist/js/standalone/selectize.js", | |
"path": "../node_modules/selectize", | |
"deps": [ | |
"jquery" | |
], | |
"resources": [ | |
"dist/css/selectize.default.css" | |
] | |
}, | |
{ | |
"name": "flag-icon-css", | |
"path": "../node_modules/flag-icon-css/css", | |
"resources": [ | |
"flag-icon.css" | |
] | |
}, | |
{ | |
"name": "aurelia-fetch-client", | |
"main": "aurelia-fetch-client", | |
"path": "../node_modules/aurelia-fetch-client/dist/amd", | |
"resources": [] | |
} | |
] | |
} | |
], | |
"loader": { | |
"type": "require", | |
"configTarget": "vendor-bundle.js", | |
"includeBundleMetadataInConfig": "auto", | |
"plugins": [ | |
{ | |
"name": "text", | |
"extensions": [ | |
".html", | |
".css" | |
], | |
"stub": true | |
} | |
] | |
} | |
}, | |
"platform": { | |
"id": "web", | |
"displayName": "Web", | |
"index": "index.html", | |
"baseDir": ".", | |
"output": "scripts" | |
}, | |
"transpiler": { | |
"id": "babel", | |
"displayName": "Babel", | |
"fileExtension": ".js", | |
"options": { | |
"plugins": [ | |
"transform-es2015-modules-amd" | |
] | |
}, | |
"source": "src/**/*.js" | |
}, | |
"markupProcessor": { | |
"id": "minimum", | |
"displayName": "Minimal Minification", | |
"fileExtension": ".html", | |
"source": "src/**/*.html" | |
}, | |
"cssProcessor": { | |
"id": "none", | |
"displayName": "None", | |
"fileExtension": ".css", | |
"source": "src/**/*.css" | |
}, | |
"editor": { | |
"id": "vscode", | |
"displayName": "Visual Studio Code" | |
}, | |
"unitTestRunner": { | |
"id": "karma", | |
"displayName": "Karma", | |
"source": "test/unit/**/*.js" | |
}, | |
"paths": { | |
"root": "src", | |
"resources": "resources", | |
"elements": "resources/elements", | |
"attributes": "resources/attributes", | |
"valueConverters": "resources/value-converters", | |
"bindingBehaviors": "resources/binding-behaviors", | |
"flagsInput": "./node_modules/flag-icon-css/flags/**/*.*", | |
"flagsOutput": "./flags" | |
}, | |
"testFramework": { | |
"id": "jasmine", | |
"displayName": "Jasmine" | |
} | |
} |