Skip to content

Instantly share code, notes, and snippets.

@JeroenVinke
Created September 28, 2017 18:25
Show Gist options
  • Save JeroenVinke/c259d9194459fefc5472187491ed9964 to your computer and use it in GitHub Desktop.
Save JeroenVinke/c259d9194459fefc5472187491ed9964 to your computer and use it in GitHub Desktop.
{
"name": "aurelia-cli-759",
"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/popper.js/dist/umd/popper.min.js",
"node_modules/requirejs/require.js"
],
"dependencies": [
"jquery",
"aurelia-binding",
"aurelia-bootstrapper",
"aurelia-dependency-injection",
"aurelia-event-aggregator",
"aurelia-fetch-client",
"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",
"aurelia-animator-css",
{
"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"
},
"text",
"velocity-animate",
"tether",
{
"name": "moment",
"path": "../node_modules/moment/min",
"main": "moment-with-locales.min"
},
{
"name": "toastr",
"path": "../node_modules/toastr",
"main": "toastr",
"deps": [ "jquery" ],
"resources": [ "build/toastr.min.css" ]
},
{
"name": "pusher-js",
"path": "../node_modules/pusher-js/dist/web",
"main": "pusher.min"
},
{
"name": "ion-rangeslider",
"path": "../node_modules/ion-rangeslider",
"main": "js/ion.rangeSlider",
"deps": [ "jquery" ],
"resources": [
"css/ion.rangeSlider.css",
"css/ion.rangeSlider.skinModern.css"
]
},
{
"name": "aurelia-ion-rangeslider",
"path": "../node_modules/aurelia-ion-rangeslider/dist/amd",
"main": "index",
"deps": [ "ion-rangeslider" ]
},
{
"name": "aurelia-ion-rangeslider",
"path": "../node_modules/aurelia-ion-rangeslider/dist/amd",
"main": "index.js"
},
{
"name": "aurelia-bootstrap",
"path": "../node_modules/aurelia-bootstrap/dist/amd",
"main": "index",
"resources": [ "**/*.html" ]
},
{
"name": "sweetalert2",
"path": "../node_modules/sweetalert2/dist",
"main": "sweetalert2.min",
"resources": [ "sweetalert2.min.css" ]
},
{
"name": "chart.js",
"path": "../node_modules/chart.js/dist",
"main": "Chart.min",
"exports": "Chart"
},
{
"name": "chartjs-plugin-annotation",
"path": "../node_modules/chartjs-plugin-annotation",
"main": "chartjs-plugin-annotation.min",
"deps": [ "chart.js" ]
},
{
"name": "aurelia-validation",
"path": "../node_modules/aurelia-validation/dist/amd",
"main": "aurelia-validation"
},
{
"name": "bootstrap",
"path": "../node_modules/bootstrap/dist",
"main": "js/bootstrap.min",
"deps": [ "jquery" ],
"exports": "$",
"resources": [ "css/bootstrap.css" ]
}
]
}
],
"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": "typescript",
"displayName": "TypeScript",
"fileExtension": ".ts",
"dtsSource": [
"./custom_typings/**/*.d.ts"
],
"source": "src/**/*.ts"
},
"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/**/*.ts"
},
"paths": {
"root": "src",
"resources": "resources",
"elements": "resources/elements",
"attributes": "resources/attributes",
"valueConverters": "resources/value-converters",
"bindingBehaviors": "resources/binding-behaviors"
},
"testFramework": {
"id": "jasmine",
"displayName": "Jasmine"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment