forked from arkon/ng-click-outside
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.15 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
57
58
59
60
61
62
63
{
"name": "ng-click-outside",
"version": "0.0.0",
"description": "Angular directive for handling click events outside an element.",
"author": "Eugene Cheung, Manuel Schmidt",
"homepage": "https://kr0san89.github.io/ng-click-outside/",
"bugs": {
"url": "https://github.com/Kr0san89/ng-click-outside/issues"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:demo": "ng build demo --base-href=/ng-click-outside/",
"build:lib": "ng build ng-click-outside2 && cp README.md dist/ng-click-outside2",
"publish:lib": "cd dist/ng-click-outside2 && npm publish",
"publish:next:lib": "cd dist/ng-click-outside2 && npm publish --tag alpha",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"serve:ssr:demo": "node dist/demo/server/server.mjs"
},
"private": true,
"license": "MIT",
"dependencies": {
"@angular/animations": "^18.2.6",
"@angular/common": "^18.2.6",
"@angular/compiler": "^18.2.6",
"@angular/core": "^18.2.6",
"@angular/forms": "^18.2.6",
"@angular/platform-browser": "^18.2.6",
"@angular/platform-browser-dynamic": "^18.2.6",
"@angular/platform-server": "^18.2.6",
"@angular/router": "^18.2.6",
"@angular/ssr": "^18.2.5",
"express": "^4.21.1",
"rxjs": "~7.8.1",
"tslib": "^2.7.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.5",
"@angular-eslint/builder": "18.3.1",
"@angular-eslint/eslint-plugin": "18.3.1",
"@angular-eslint/eslint-plugin-template": "18.3.1",
"@angular-eslint/schematics": "18.3.1",
"@angular-eslint/template-parser": "18.3.1",
"@angular/cli": "^18.2.6",
"@angular/compiler-cli": "^18.2.6",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.13",
"@types/node": "^20.9.1",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"browser-sync": "^3.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-preset-angular": "^14.2.4",
"ng-packagr": "^18.2.1",
"ts-node": "^10.9.2",
"typescript": "~5.5.3"
}
}