-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #146 from filipelautert/master
Updates to Angular 11
- Loading branch information
Showing
8 changed files
with
150 additions
and
14,361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,75 @@ | ||
{ | ||
"name": "angular2-hotkeys", | ||
"version": "2.2.0", | ||
"scripts": { | ||
"build": "ng build angular2-hotkeys", | ||
"build:release": "ng build angular2-hotkeys --prod", | ||
"build:watch": "ng build angular2-hotkeys --watch", | ||
"ng": "ng", | ||
"lint": "ng lint", | ||
"release": "npm run build:release && npm publish dist/", | ||
"release:beta": "npm run build:release && npm publish dist/ --tag beta", | ||
"start": "ng serve", | ||
"test": "ng test" | ||
}, | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:brtnshrdr/angular2-hotkeys.git" | ||
}, | ||
"author": { | ||
"name": "Nick Richardson", | ||
"email": "[email protected]" | ||
}, | ||
"keywords": [ | ||
"angular", | ||
"angular2", | ||
"hotkeys", | ||
"keyboard", | ||
"shortcut" | ||
], | ||
"bugs": { | ||
"url": "[email protected]:brtnshrdr/angular2-hotkeys.git/issues" | ||
}, | ||
"peerDependencies": { | ||
"@angular/core": "^5.2.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", | ||
"rxjs": "^5.5.0 || ^6.0.0" | ||
}, | ||
"dependencies": { | ||
"mousetrap": "^1.6.0", | ||
"@types/mousetrap": "^1.6.0" | ||
}, | ||
"devDependencies": { | ||
"@angular-devkit/build-angular": "~0.900.3", | ||
"@angular-devkit/build-ng-packagr": "~0.900.3", | ||
"@angular/animations": "~9.0.2", | ||
"@angular/cli": "~9.0.3", | ||
"@angular/common": "~9.0.2", | ||
"@angular/compiler": "~9.0.2", | ||
"@angular/compiler-cli": "~9.0.2", | ||
"@angular/core": "~9.0.2", | ||
"@angular/forms": "~9.0.2", | ||
"@angular/language-service": "~9.0.2", | ||
"@angular/platform-browser": "~9.0.2", | ||
"@angular/platform-browser-dynamic": "~9.0.2", | ||
"@angular/router": "~9.0.2", | ||
"@types/node": "^12.11.1", | ||
"@types/jasmine": "~3.5.0", | ||
"@types/jasminewd2": "~2.0.3", | ||
"codelyzer": "^5.1.2", | ||
"jasmine-core": "~3.5.0", | ||
"jasmine-spec-reporter": "~4.2.1", | ||
"karma": "~4.3.0", | ||
"karma-chrome-launcher": "~3.1.0", | ||
"karma-coverage-istanbul-reporter": "~2.1.0", | ||
"karma-jasmine": "~2.0.1", | ||
"karma-jasmine-html-reporter": "^1.4.2", | ||
"ng-packagr": "^9.0.0", | ||
"protractor": "~5.4.3", | ||
"rxjs": "~6.5.4", | ||
"ts-node": "~8.3.0", | ||
"tslib": "^1.10.0", | ||
"tslint": "~5.18.0", | ||
"typescript": "~3.7.5", | ||
"zone.js": "~0.10.2" | ||
} | ||
"name": "angular2-hotkeys", | ||
"version": "2.3.0", | ||
"scripts": { | ||
"build": "ng build angular2-hotkeys", | ||
"build:release": "ng build angular2-hotkeys --prod", | ||
"build:watch": "ng build angular2-hotkeys --watch", | ||
"ng": "ng", | ||
"lint": "ng lint", | ||
"release": "npm run build:release && npm publish dist/", | ||
"release:beta": "npm run build:release && npm publish dist/ --tag beta", | ||
"start": "ng serve", | ||
"test": "ng test" | ||
}, | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:brtnshrdr/angular2-hotkeys.git" | ||
}, | ||
"author": { | ||
"name": "Nick Richardson", | ||
"email": "[email protected]" | ||
}, | ||
"keywords": [ | ||
"angular", | ||
"angular2", | ||
"hotkeys", | ||
"keyboard", | ||
"shortcut" | ||
], | ||
"bugs": { | ||
"url": "[email protected]:brtnshrdr/angular2-hotkeys.git/issues" | ||
}, | ||
"peerDependencies": { | ||
"rxjs": "^5.5.0 || ^6.0.0" | ||
}, | ||
"dependencies": { | ||
"@types/mousetrap": "^1.6.0", | ||
"mousetrap": "^1.6.0", | ||
"tslib": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@angular-devkit/build-angular": "~0.1102.13", | ||
"@angular-devkit/core": "^11.2.13", | ||
"@angular/animations": "~11.2.14", | ||
"@angular/cli": "~11.2.13", | ||
"@angular/common": "~11.2.14", | ||
"@angular/compiler": "~11.2.14", | ||
"@angular/compiler-cli": "~11.2.14", | ||
"@angular/core": "~11.2.14", | ||
"@angular/forms": "~11.2.14", | ||
"@angular/language-service": "~11.2.14", | ||
"@angular/platform-browser": "~11.2.14", | ||
"@angular/platform-browser-dynamic": "~11.2.14", | ||
"@angular/router": "~11.2.14", | ||
"@types/jasmine": "~3.5.0", | ||
"@types/jasminewd2": "~2.0.3", | ||
"@types/node": "^12.11.1", | ||
"codelyzer": "^6.0.2", | ||
"jasmine-core": "~3.7.1", | ||
"jasmine-spec-reporter": "~5.0.0", | ||
"karma": "~6.3.2", | ||
"karma-chrome-launcher": "~3.1.0", | ||
"karma-coverage-istanbul-reporter": "~3.0.2", | ||
"karma-jasmine": "~4.0.0", | ||
"karma-jasmine-html-reporter": "^1.6.0", | ||
"ng-packagr": "^11.2.4", | ||
"protractor": "~7.0.0", | ||
"rxjs": "~6.5.4", | ||
"ts-node": "~8.3.0", | ||
"tslint": "~6.1.0", | ||
"typescript": "~4.0.7", | ||
"zone.js": "~0.10.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters