move schematics into a peer dependency

This commit is contained in:
vsavkin 2017-08-19 10:12:38 -04:00
parent 27756cc9d1
commit 1e9683135e

View File

@ -6,13 +6,14 @@
"scripts": { "scripts": {
"build": "./scripts/build.sh", "build": "./scripts/build.sh",
"e2e": "yarn build && ./scripts/e2e.sh", "e2e": "yarn build && ./scripts/e2e.sh",
"release": "yarn build && ./scripts/release.sh" "package": "./scripts/package.sh",
"release": "./scripts/release.sh"
}, },
"dependencies" :{ "dependencies" :{
"@angular-devkit/schematics": "0.0.16",
"jasmine-marbles": "0.1.0" "jasmine-marbles": "0.1.0"
}, },
"peerDependencies" :{ "peerDependencies" :{
"@angular-devkit/schematics": "*",
"rxjs": "*" "rxjs": "*"
}, },
"devDependencies": { "devDependencies": {
@ -20,7 +21,9 @@
"typescript": "2.4.2", "typescript": "2.4.2",
"@types/node": "8.0.7", "@types/node": "8.0.7",
"@types/jasmine": "2.5.53", "@types/jasmine": "2.5.53",
"jest": "20.0.4" "jest": "20.0.4",
"@angular-devkit/schematics": "0.0.17",
"@schematics/angular": "git+https://github.com/Brocco/zzz-ng-schematics.git"
}, },
"author": "Victor Savkin", "author": "Victor Savkin",
"license": "MIT", "license": "MIT",