Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. {
  2. "name": "demos-ts",
  3. "type": "project:application",
  4. "bundler": {
  5. "id": "cli",
  6. "displayName": "Aurelia-CLI"
  7. },
  8. "build": {
  9. "targets": [
  10. {
  11. "id": "web",
  12. "displayName": "Web",
  13. "index": "index.html",
  14. "baseDir": ".",
  15. "output": "scripts"
  16. }
  17. ],
  18. "options": {
  19. "minify": "stage & prod",
  20. "sourcemaps": "dev & stage"
  21. },
  22. "bundles": [
  23. {
  24. "name": "app-bundle.js",
  25. "source": [
  26. "[**/*.js]",
  27. "**/*.{css,html}"
  28. ]
  29. },
  30. {
  31. "name": "vendor-bundle.js",
  32. "prepend": [
  33. "node_modules/bluebird/js/browser/bluebird.core.js",
  34. "node_modules/aurelia-cli/lib/resources/scripts/configure-bluebird.js",
  35. "node_modules/fuse.js/dist/fuse",
  36. "node_modules/requirejs/require.js"
  37. ],
  38. "dependencies": [
  39. "aurelia-binding",
  40. "aurelia-bootstrapper",
  41. "aurelia-dependency-injection",
  42. "aurelia-event-aggregator",
  43. "aurelia-framework",
  44. "aurelia-history",
  45. "aurelia-history-browser",
  46. "aurelia-loader",
  47. "aurelia-loader-default",
  48. "aurelia-logging",
  49. "aurelia-logging-console",
  50. "aurelia-metadata",
  51. "aurelia-pal",
  52. "aurelia-pal-browser",
  53. "aurelia-path",
  54. "aurelia-polyfills",
  55. "aurelia-route-recognizer",
  56. "aurelia-router",
  57. "aurelia-task-queue",
  58. "aurelia-templating",
  59. "aurelia-templating-binding",
  60. {
  61. "name": "aurelia-templating-resources",
  62. "path": "../node_modules/aurelia-templating-resources/dist/amd",
  63. "main": "aurelia-templating-resources"
  64. },
  65. {
  66. "name": "aurelia-templating-router",
  67. "path": "../node_modules/aurelia-templating-router/dist/amd",
  68. "main": "aurelia-templating-router"
  69. },
  70. {
  71. "name": "aurelia-testing",
  72. "path": "../node_modules/aurelia-testing/dist/amd",
  73. "main": "aurelia-testing",
  74. "env": "dev"
  75. },
  76. "text"
  77. ]
  78. }
  79. ],
  80. "loader": {
  81. "type": "require",
  82. "configTarget": "vendor-bundle.js",
  83. "includeBundleMetadataInConfig": "auto",
  84. "plugins": [
  85. {
  86. "name": "text",
  87. "extensions": [
  88. ".html",
  89. ".css"
  90. ],
  91. "stub": true
  92. }
  93. ]
  94. }
  95. },
  96. "platform": {
  97. "id": "web",
  98. "displayName": "Web",
  99. "index": "index.html",
  100. "baseDir": ".",
  101. "output": "scripts"
  102. },
  103. "transpiler": {
  104. "id": "typescript",
  105. "displayName": "TypeScript",
  106. "fileExtension": ".ts",
  107. "dtsSource": [
  108. "./custom_typings/**/*.d.ts"
  109. ],
  110. "source": "src/**/*.ts"
  111. },
  112. "markupProcessor": {
  113. "id": "minimum",
  114. "displayName": "Minimal Minification",
  115. "fileExtension": ".html",
  116. "source": "src/**/*.html"
  117. },
  118. "cssProcessor": {
  119. "id": "none",
  120. "displayName": "None",
  121. "fileExtension": ".css",
  122. "source": "src/**/*.css"
  123. },
  124. "editor": {
  125. "id": "vscode",
  126. "displayName": "Visual Studio Code"
  127. },
  128. "unitTestRunner": {
  129. "id": "karma",
  130. "displayName": "Karma",
  131. "source": "test/unit/**/*.ts"
  132. },
  133. "paths": {
  134. "root": "src",
  135. "resources": "resources",
  136. "elements": "resources/elements",
  137. "attributes": "resources/attributes",
  138. "valueConverters": "resources/value-converters",
  139. "bindingBehaviors": "resources/binding-behaviors"
  140. },
  141. "testFramework": {
  142. "id": "jasmine",
  143. "displayName": "Jasmine"
  144. }
  145. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement