mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* add integration 2.0.0 test * update readme * add integration test in travis * restore tsconfig.dev * fix test script travis call * improve script * fix npm run test
107 lines
2.6 KiB
JSON
107 lines
2.6 KiB
JSON
{
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
"project": {
|
|
"name": "myapp"
|
|
},
|
|
"apps": [
|
|
{
|
|
"name" : "dist",
|
|
"root": "src",
|
|
"outDir": "dist",
|
|
"assets": [
|
|
"assets",
|
|
"favicon.ico",
|
|
"app.config.json",
|
|
"versions.json",
|
|
{
|
|
"glob": "**/*",
|
|
"input": "../resources",
|
|
"output": "./resources"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "../node_modules/@alfresco/adf-core/prebuilt-themes",
|
|
"output": "./assets/prebuilt-themes"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "../node_modules/@alfresco/adf-core/bundles/assets",
|
|
"output": "./assets/"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "../node_modules/@alfresco/adf-insights/bundles/assets",
|
|
"output": "./assets/"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "../node_modules/@alfresco/adf-process-services/bundles/assets",
|
|
"output": "./assets/"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "../node_modules/@alfresco/adf-content-services/bundles/assets",
|
|
"output": "./assets/"
|
|
},
|
|
{ "glob": "pdf.worker.js", "input": "../node_modules/pdfjs-dist/build", "output": "./" }
|
|
],
|
|
"index": "index.html",
|
|
"main": "main.ts",
|
|
"polyfills": "polyfills.ts",
|
|
"test": "test.ts",
|
|
"tsconfig": "tsconfig.app.json",
|
|
"testTsconfig": "tsconfig.spec.json",
|
|
"prefix": "app",
|
|
"styles": [
|
|
"custom-style.scss"
|
|
],
|
|
"stylePreprocessorOptions": {
|
|
"includePaths": [
|
|
"../node_modules/"
|
|
]
|
|
},
|
|
"scripts": [
|
|
"../node_modules/pdfjs-dist/build/pdf.js",
|
|
"../node_modules/pdfjs-dist/web/pdf_viewer.js",
|
|
"../node_modules/raphael/raphael.min.js",
|
|
"../node_modules/moment/min/moment.min.js"
|
|
],
|
|
"environmentSource": "environments/environment.ts",
|
|
"environments": {
|
|
"dev": "environments/environment.ts",
|
|
"prod": "environments/environment.prod.ts"
|
|
}
|
|
}
|
|
],
|
|
"e2e": {
|
|
"protractor": {
|
|
"config": "./protractor.conf.js"
|
|
}
|
|
},
|
|
"lint": [
|
|
{
|
|
"project": "src/tsconfig.app.json"
|
|
},
|
|
{
|
|
"project": "src/tsconfig.spec.json"
|
|
},
|
|
{
|
|
"project": "e2e/tsconfig.e2e.json"
|
|
}
|
|
],
|
|
"test": {
|
|
"karma": {
|
|
"config": "./karma.conf.js"
|
|
}
|
|
},
|
|
"defaults": {
|
|
"styleExt": "scss",
|
|
"component": {
|
|
},
|
|
"serve": {
|
|
"proxyConfig": "proxy.conf.json",
|
|
"port": 4200
|
|
}
|
|
}
|
|
}
|