This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
87 lines (87 loc) · 2.66 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
{
"name": "@zup-it/beagle-angular",
"version": "2.1.0",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"fix-package": "node bin/fix-package.js",
"build-cli": "yarn tsc -p tsconfig.cli.json",
"copy-dist": "yarn ncp .dist dist",
"build": "ng build beagle-angular --prod && yarn build-cli && yarn fix-package && yarn copy-dist",
"test": "jest",
"lint": "eslint src/**/*.ts",
"watch": "yarn nodemon --watch src -e ts,html,css,less --exec yarn build",
"auto-license": "ts-node --skip-project bin/auto-license.ts"
},
"husky": {
"hooks": {
"pre-commit": "sh ./bin/check-license.sh",
"pre-push": "yarn lint"
}
},
"main": "dist/bundles/beagle-angular.umd.js",
"module": "dist/fesm5/beagle-angular.js",
"es2015": "dist/fesm2015/beagle-angular.js",
"esm5": "dist/esm5/beagle-angular.js",
"esm2015": "dist/esm2015/beagle-angular.js",
"fesm5": "dist/fesm5/beagle-angular.js",
"fesm2015": "dist/fesm2015/beagle-angular.js",
"typings": "dist/index.d.ts",
"metadata": "dist/beagle-angular.metadata.json",
"sideEffects": false,
"private": false,
"dependencies": {
"@types/lodash": "^4.14.178",
"@zup-it/beagle-web": "2.1.0",
"csstype": "^2.6.10",
"lodash": "^4.17.21"
},
"peerDependencies": {
"@angular/common": ">= 7 <= 12.2",
"@angular/core": ">= 7 <= 12.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.901.12",
"@angular-devkit/build-ng-packagr": "~0.900.1",
"@angular/animations": "~9.0.0",
"@angular/cli": "~9.0.1",
"@angular/common": "~9.0.0",
"@angular/compiler": "~9.0.0",
"@angular/compiler-cli": "~9.0.0",
"@angular/core": "~9.0.0",
"@angular/forms": "~9.0.0",
"@angular/language-service": "~9.0.0",
"@angular/platform-browser": "~9.0.0",
"@angular/platform-browser-dynamic": "~9.0.0",
"@angular/router": "~9.0.0",
"@types/jest": "26.0.4",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"amd-loader": "^0.0.8",
"codelyzer": "^5.1.2",
"copy-dir": "^1.2.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"glob": "^7.2.0",
"glob-promise": "^4.2.2",
"husky": "^4.2.5",
"jest": "26.1.0",
"jest-preset-angular": "8.2.1",
"ncp": "^2.0.0",
"ng-packagr": "^9.0.0",
"nodemon": "^2.0.4",
"rxjs": "~6.5.4",
"ts-node": "^10.4.0",
"tslib": "^1.10.0",
"tslint": "~5.18.0",
"typescript": "~3.7.5",
"zone.js": "~0.10.2"
}
}