forked from ncstate-sat/popover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.89 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
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
{
"name": "@fincrm/sat-popover",
"version": "16.0.1",
"license": "MIT",
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"scripts": {
"clean": "rm -rf dist",
"demo": "ng serve demo",
"build": "ng build popover && ts-node tools/prepare-package.ts",
"build:prod": "ng build popover --configuration production && ts-node 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": "ts-node tools/release.ts"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"private": true,
"keywords": [
"angular",
"component",
"popover",
"popup",
"popper",
"overlay"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fincrm/popover.git"
},
"bugs": {
"url": "https://github.com/fincrm/popover/issues"
},
"homepage": "https://github.com/fincrm/popover#readme",
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.5",
"@angular-eslint/builder": "16.0.3",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/schematics": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/animations": "^16.0.5",
"@angular/cdk": "^16.0.4",
"@angular/cli": "^16.2.1",
"@angular/common": "^16.0.5",
"@angular/compiler": "^16.0.5",
"@angular/compiler-cli": "^16.2.4",
"@angular/core": "^16.0.5",
"@angular/forms": "^16.2.4",
"@angular/language-service": "^16.0.5",
"@angular/material": "^16.0.4",
"@angular/platform-browser": "^16.2.4",
"@angular/platform-browser-dynamic": "^16.0.5",
"@angular/router": "^16.0.5",
"@types/jasmine": "^4.3.2",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"angular-cli-ghpages": "^1.0.0",
"chalk": "^5.3.0",
"core-js": "^3.22.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine-core": "^5.0.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.3.20",
"karma-chrome-launcher": "3.2",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "5.1",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^16.0.1",
"prettier": "^2.6.2",
"protractor": "^7.0.0",
"rxjs": "^7.5.5",
"ts-node": "10.9",
"typescript": "5.0",
"zone.js": "~0.13.0"
},
"dependencies": {
"tslib": "^2.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}