-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.84 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.84 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@ncstate/sat-popover",
"version": "15.0.0",
"license": "MIT",
"engines": {
"npm": ">=11.3.0",
"node": ">=22.12.0"
},
"scripts": {
"clean": "rm -rf dist",
"demo": "ng serve demo",
"build": "ng build popover && tsx tools/prepare-package.ts",
"build:prod": "ng build popover --configuration production && tsx tools/prepare-package.ts",
"build:demo": "ng build demo --configuration production --base-href=\"/popover/\"",
"gh-pages": "ngh --dir dist/demo",
"lint": "ng lint popover",
"format": "prettier --write *",
"test": "ng test popover",
"test:once": "ng test popover --watch=false",
"release": "tsx tools/release.ts"
},
"private": true,
"keywords": [
"angular",
"component",
"popover",
"popup",
"popper",
"overlay"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ncstate-sat/popover.git"
},
"bugs": {
"url": "https://github.com/ncstate-sat/popover/issues"
},
"homepage": "https://github.com/ncstate-sat/popover#readme",
"devDependencies": {
"@angular-eslint/builder": "~20.0.0",
"@angular-eslint/eslint-plugin": "~20.0.0",
"@angular-eslint/eslint-plugin-template": "~20.0.0",
"@angular-eslint/schematics": "~20.0.0",
"@angular-eslint/template-parser": "~20.0.0",
"@angular/animations": "~20.0.2",
"@angular/build": "^20.0.1",
"@angular/cdk": "~20.0.2",
"@angular/cli": "~20.0.1",
"@angular/common": "~20.3.14",
"@angular/compiler": "~20.0.2",
"@angular/compiler-cli": "~20.0.2",
"@angular/core": "~20.0.2",
"@angular/forms": "~20.0.2",
"@angular/language-service": "~20.0.2",
"@angular/material": "~20.0.2",
"@angular/platform-browser": "~20.0.2",
"@angular/platform-browser-dynamic": "~20.0.2",
"@angular/router": "~20.0.2",
"@types/jasmine": "~5.1.8",
"@types/jasminewd2": "^2.0.13",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "8.34.0",
"@typescript-eslint/parser": "8.34.0",
"angular-cli-ghpages": "^2.0.3",
"core-js": "^3.43.0",
"eslint": "~9.28.0",
"jasmine-core": "~5.8.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^20.0.0",
"picocolors": "1.1.1",
"prettier": "^3.5.3",
"rxjs": "^7.8.2",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"zone.js": "~0.15.1"
},
"dependencies": {
"tslib": "^2.8.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"overrides": {
"gh-pages": "^5.0.0"
},
"volta": {
"node": "22.12.0",
"npm": "11.3.0"
}
}