mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
Simple project demonstrating ng2 component hosting within ng1-based application (based on official angular-seed repo).
58 lines
1.8 KiB
JSON
58 lines
1.8 KiB
JSON
{
|
|
"name": "angular-seed",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"description": "A starter project for AngularJS",
|
|
"repository": "https://github.com/angular/angular-seed",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"bower": "^1.3.1",
|
|
"http-server": "^0.6.1",
|
|
"jasmine-core": "^2.3.4",
|
|
"karma": "~0.12",
|
|
"karma-chrome-launcher": "^0.1.12",
|
|
"karma-firefox-launcher": "^0.1.6",
|
|
"karma-jasmine": "^0.3.5",
|
|
"karma-junit-reporter": "^0.2.2",
|
|
"protractor": "^2.1.0",
|
|
"shelljs": "^0.2.6",
|
|
|
|
|
|
"jquery": "^2.2.2",
|
|
"bootstrap": "^3.3.6",
|
|
"angular2": "2.0.0-beta.13",
|
|
"systemjs": "0.19.25",
|
|
"es6-shim": "^0.35.0",
|
|
"reflect-metadata": "0.1.2",
|
|
"rxjs": "5.0.0-beta.2",
|
|
"zone.js": "0.6.6",
|
|
|
|
"concurrently": "^2.0.0",
|
|
"lite-server": "^2.1.0",
|
|
"typescript": "^1.8.9",
|
|
"typings":"^0.7.11"
|
|
},
|
|
"scripts": {
|
|
"prestart": "npm install",
|
|
|
|
"pretest": "npm install",
|
|
"test": "karma start karma.conf.js",
|
|
"test-single-run": "karma start karma.conf.js --single-run",
|
|
|
|
"preupdate-webdriver": "npm install",
|
|
"update-webdriver": "webdriver-manager update",
|
|
|
|
"preprotractor": "npm run update-webdriver",
|
|
"protractor": "protractor e2e-tests/protractor.conf.js",
|
|
|
|
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + sed(/sourceMappingURL=angular-loader.min.js.map/,'sourceMappingURL=bower_components/angular-loader/angular-loader.min.js.map','app/bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\"",
|
|
|
|
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
|
|
"tsc": "tsc",
|
|
"tsc:w": "tsc -w",
|
|
"lite": "lite-server",
|
|
"typings": "typings",
|
|
"postinstall": "bower install && typings install"
|
|
}
|
|
}
|