docs: add tests for lazy loading angularjs example (#30622)

PR Close #30622
This commit is contained in:
Brandon
2019-05-22 14:30:31 -05:00
committed by Alex Rickabaugh
parent 81332150aa
commit 2b5d52fbdc
11 changed files with 201 additions and 12 deletions

View File

@ -0,0 +1,23 @@
{
"scripts": [
{ "name": "ng", "command": "ng" },
{ "name": "build", "command": "ng build --prod" },
{ "name": "start", "command": "ng serve" },
{ "name": "test", "command": "ng test" },
{ "name": "lint", "command": "ng lint" },
{ "name": "e2e", "command": "ng e2e" }
],
"dependencies": [
"angular",
"angular-route"
],
"devDependencies": [
"@angular/cli",
"@types/angular",
"@types/angular-route",
"@types/jasminewd2",
"jasmine-spec-reporter",
"karma-coverage-istanbul-reporter",
"ts-node"
]
}