-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "angular-esc",
"version": "0.1.0",
"description": "Angular 4+ Directive adding event for escape key",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run lint && rimraf lib && ngc",
"prepare": "npm run lint && npm run build",
"lint": "tslint --project tsconfig.json src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielKucal/angular-esc.git"
},
"keywords": [
"angular",
"angular2",
"angular4",
"esc",
"escape",
"event",
"key",
"directive"
],
"author": "Daniel Kucal",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanielKucal/angular-esc/issues"
},
"homepage": "https://github.com/DanielKucal/angular-esc#readme",
"peerDependencies": {
"@angular/common": ">=4.0.0",
"@angular/core": ">=4.0.0"
},
"devDependencies": {
"@angular/common": "^4.4.6",
"@angular/compiler": "^4.4.6",
"@angular/compiler-cli": "^4.4.6",
"@angular/core": "^4.4.6",
"@angular/platform-browser": "^4.4.6",
"rimraf": "^2.6.2",
"rxjs": "^5.5.2",
"tslint": "^5.8.0",
"tslint-angular": "^1.1.1",
"typescript": "^2.4.2",
"zone.js": "^0.8.18"
}
}