-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
100 lines (100 loc) · 3.78 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": "p3x-angular-compile",
"version": "2024.10.104",
"corifeus": {
"prefix": "p3x-",
"publish": true,
"type": "p3x",
"code": "Logico",
"nodejs": "v22.3.0",
"opencollective": false,
"reponame": "angular-compile",
"build": true,
"cdn": true,
"angular": "18.0.5",
"publish-location": "./dist/angular-compile"
},
"description": "🆖 Angular Dynamic Compile - Convert strings to Angular components",
"scripts": {
"ng": "ng",
"start": "ng serve --hmr",
"build": "ng build",
"test": "grunt",
"lint": "ng lint",
"e2e": "ng e2e",
"build-lib": "mkdirp ./dist/angular-compile && ncp ./projects/angular-compile/src ./dist/angular-compile && ncp ./projects/angular-compile/package.json ./dist/angular-compile/package.json && cp README.md ./dist/angular-compile && cp LICENSE ./dist/angular-compile && node node_modules/corifeus-builder/src/utils/angular/post-lib-build.js",
"build-lib-old": "ng build --configuration=production --project angular-compile && cp README.md ./dist/angular-compile && cp LICENSE ./dist/angular-compile && node node_modules/corifeus-builder/src/utils/angular/post-lib-build.js",
"build-app-info": "Have to disable AOT for this build",
"build-app": "ng build --configuration=production --source-map=false --output-hashing=all --base-href=/ --aot=false --build-optimizer=false --optimization=true && grunt htmlmin:dist",
"stats": "ng build --stats-json && webpack-bundle-analyzer dist/angular-compile-workspace/stats.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrikx3/angular-compile.git"
},
"keywords": [
"p3x",
"angular",
"ng",
"compile",
"html",
"angular",
"dynamic",
"aot"
],
"author": "Patrik Laszlo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrikx3/angular-compile/issues"
},
"homepage": "https://corifeus.com/angular-compile",
"dependencies": {
"@angular/animations": "^18.0.5",
"@angular/cdk": "^18.0.5",
"@angular/common": "^18.0.5",
"@angular/compiler": "^18.0.5",
"@angular/core": "^18.0.5",
"@angular/forms": "^18.0.5",
"@angular/material": "^18.0.5",
"@angular/platform-browser": "^18.0.5",
"@angular/platform-browser-dynamic": "^18.0.5",
"@angular/router": "^18.0.5",
"postcss": "^8.4.39",
"rxjs": "~6.6.3",
"tslib": "^2.2.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.6",
"@angular/cli": "^18.0.6",
"@angular/compiler-cli": "^18.0.5",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"codelyzer": "^6.0.2",
"corifeus-builder": "^2024.10.103",
"eslint": "^8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.5.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "~5.1.2",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.2",
"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",
"mkdirp": "^3.0.1",
"ncp": "^2.0.0",
"ng-packagr": "^18.0.0",
"protractor": "~7.0.0",
"ts-node": "~10.9.2",
"typescript": "~5.4.5",
"webpack-bundle-analyzer": "^4.10.2"
},
"engines": {
"node": ">=12.13.0"
}
}