forked from brtnshrdr/angular2-hotkeys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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": "@valudio/angular2-hotkeys",
"version": "0.5.7",
"scripts": {
"build": "rimraf dist && tsc",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "pretest && karma start",
"version": "npm run build",
"postversion": "npm publish",
"rls": "npm --no-git-tag-version version",
"rls:patch": "npm run rls -- patch",
"rls:minor": "npm run rls -- minor",
"rls:major": "npm run rls -- major"
},
"repository": {
"type": "git",
"url": "[email protected]:brtnshrdr/angular2-hotkeys.git"
},
"author": {
"name": "Nick Richardson",
"email": "[email protected]"
},
"keywords": [
"angular",
"angular2",
"hotkeys",
"keyboard",
"shortcut"
],
"license": "MIT",
"bugs": {
"url": "[email protected]:brtnshrdr/angular2-hotkeys.git/issues"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"@types/mousetrap": "^1.5.32",
"mousetrap": "^1.6.0",
"@angular/common": "2.1.0",
"@angular/compiler": "2.1.0",
"@angular/core": "2.1.0",
"@angular/http": "2.1.0",
"@angular/platform-browser": "2.1.0",
"core-js": "^2.4.1",
"rxjs": "5.0.0-beta.12",
"systemjs": "0.19.27",
"zone.js": "^0.6.23"
},
"devDependencies": {
"rimraf": "^2.5.4",
"tslint": "^4.0.2",
"typescript": "^2.0.10"
}
}