This repository has been archived by the owner on Nov 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
56 lines (56 loc) · 1.52 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
56
{
"name": "ng-click-outside",
"version": "9.0.1",
"description": "[DEPRECATED] Angular directive for handling click events outside an element.",
"repository": {
"type": "git",
"url": "https://github.com/arkon/ng-click-outside.git"
},
"homepage": "http://echeung.me/ng-click-outside/",
"bugs": {
"url": "https://github.com/arkon/ng-click-outside/issues"
},
"files": [
"lib_commonjs/*",
"lib_esmodule/*",
"README.md",
"LICENSE"
],
"author": "Eugene Cheung",
"license": "MIT",
"keywords": [
"angular",
"ng",
"click",
"event",
"outside",
"handler"
],
"main": "./lib_commonjs/index.js",
"module": "./lib_esmodule/index.js",
"jsnext:main": "./lib_esmodule/index.js",
"typings": "./lib_commonjs/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json src/**/*.ts",
"build:commonjs": "rimraf lib_commonjs && ngc -p tsconfig.json",
"build:esmodule": "rimraf lib_esmodule && ngc -p tsconfig.module.json",
"build": "npm run lint && npm run build:commonjs && npm run build:esmodule",
"prepare": "npm run build"
},
"peerDependencies": {
"@angular/common": ">=12.0.0",
"@angular/core": ">=12.0.0"
},
"devDependencies": {
"@angular/common": "^12.1.4",
"@angular/compiler": "^12.1.4",
"@angular/compiler-cli": "^12.1.4",
"@angular/core": "^12.1.4",
"@angular/platform-browser": "^12.1.4",
"rimraf": "^3.0.2",
"rxjs": "^6.6.6",
"tslint": "~6.1.3",
"typescript": "4.3.5",
"zone.js": "~0.11.4"
}
}