forked from chippdnyc/ng-click-outside
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "ng4-click-outside",
"version": "1.0.1",
"description": "Angular 4 directive for handling click events outside an element.",
"repository": {
"type": "git",
"url": "https://github.com/chippdnyc/ng-click-outside.git"
},
"homepage": "https://github.com/chippdnyc/ng-click-outside",
"bugs": {
"url": "https://github.com/chippdnyc/ng-click-outside/issues"
},
"files": [
"src/*",
"lib/*",
"README.md",
"LICENSE"
],
"author": "Eugene Cheung",
"license": "MIT",
"keywords": [
"angular",
"angular2",
"angular4",
"ng2",
"ng4",
"click",
"event",
"outside",
"handler"
],
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"lint": "tslint --type-check --project tsconfig.json src/**/*.ts",
"build": "npm run lint && rimraf lib && ngc",
"prepublish": "npm run build"
},
"peerDependencies": {
"@angular/core": ">=2.3.0"
},
"devDependencies": {
"@angular/common": "^4.3.1",
"@angular/compiler": "^4.3.1",
"@angular/compiler-cli": "^4.3.1",
"@angular/core": "^4.3.1",
"@angular/platform-browser": "^4.3.1",
"rimraf": "^2.6.1",
"rxjs": "^5.4.2",
"tslint": "^5.5.0",
"typescript": "^2.4.2",
"zone.js": "^0.8.14"
}
}