forked from brtnshrdr/angular2-hotkeys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "angular2-hotkeys",
"version": "2.1.4",
"scripts": {
"lint": "tslint src/**/*.ts",
"test": "tsc && karma start",
"prepare": "tsc && ngc",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"ngc": "./node_modules/.bin/ngc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git@github.com:brtnshrdr/angular2-hotkeys.git"
},
"author": {
"name": "Nick Richardson",
"email": "nick.richardson@mediapixeldesign.com"
},
"keywords": [
"angular",
"angular2",
"hotkeys",
"keyboard",
"shortcut"
],
"license": "MIT",
"bugs": {
"url": "git@github.com:brtnshrdr/angular2-hotkeys.git/issues"
},
"main": "./index.js",
"dependencies": {
"mousetrap": "^1.6.0",
"@types/mousetrap": "^1.6.0"
},
"devDependencies": {
"@angular/common": "4.2.5",
"@angular/compiler": "4.2.5",
"@angular/compiler-cli": "4.2.5",
"@angular/core": "4.2.5",
"@types/core-js": "0.9.41",
"codelyzer": "~3.0.1",
"rxjs": "^5.5.0",
"tslint": "^3.15.1",
"typescript": "~2.3.3",
"zone.js": "^0.8.4"
},
"peerDependencies": {
"@angular/core": "^5.2.0 || ^6.0.0 || ^7.0.0",
"rxjs": "^5.5.0 || ^6.0.0"
},
"engines": {
"node": ">=0.8.0"
}
}