mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-14 01:08:29 +08:00
This change removes the need for the `@schematics/schematics` package and moves it inside `@angular-devkit/schematics-cli`.
26 lines
616 B
JSON
26 lines
616 B
JSON
{
|
|
"name": "<%= dasherize(name) %>",
|
|
"version": "0.0.0",
|
|
"description": "A schematics",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"test": "npm run build && jasmine src/**/*_spec.js"
|
|
},
|
|
"keywords": [
|
|
"schematics"
|
|
],
|
|
"author": "<%= author %>",
|
|
"license": "MIT",
|
|
"schematics": "./src/collection.json",
|
|
"dependencies": {
|
|
"@angular-devkit/core": "^<%= coreVersion %>",
|
|
"@angular-devkit/schematics": "^<%= schematicsVersion %>",
|
|
"typescript": "~4.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.11.1",
|
|
"@types/jasmine": "~3.6.0",
|
|
"jasmine": "^3.5.0"
|
|
}
|
|
}
|