- Update tooling to support revised testing guide (PR #20697). - Require jasmine upgrade for examples that use marble testing. - Copy `cli/package.json` to `testing/` and add `jasmine-marbles`. - Resolve merge conflicts created by `NgModules` guides. PR Close #20165
19 lines
471 B
JSON
19 lines
471 B
JSON
{
|
|
"scripts": [
|
|
{ "name": "ng", "command": "ng" },
|
|
{ "name": "build", "command": "ng build" },
|
|
{ "name": "start", "command": "ng serve" },
|
|
{ "name": "test", "command": "ng test" },
|
|
{ "name": "lint", "command": "ng lint" },
|
|
{ "name": "e2e", "command": "ng e2e" }
|
|
],
|
|
"dependencies": [],
|
|
"devDependencies": [
|
|
"@angular/cli",
|
|
"@types/jasminewd2",
|
|
"jasmine-spec-reporter",
|
|
"karma-coverage-istanbul-reporter",
|
|
"ts-node"
|
|
]
|
|
}
|