forked from hamzahamidi/ajsf
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.71 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.71 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
103
104
105
106
107
{
"name": "demo",
"version": "15.0.0",
"author": "https://github.com/hamzahamidi/Angular6-json-schema-form/graphs/contributors",
"description": "Angular JSON Schema Form builder Demo",
"engines": {
"node": "^20.14.0",
"npm": "^10.8.2"
},
"keywords": [
"Angular",
"ng",
"ng19",
"JSON Schema",
"form",
"forms",
"form builder",
"material",
"angular material",
"bootstrap",
"bootstrap 3",
"bootstrap 4",
"bootstrap 5",
"ajsf",
"angular json schema form"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hamzahamidi/angular6-json-schema-form"
},
"bugs": {
"url": "https://github.com/hamzahamidi/angular6-json-schema-form/issues"
},
"homepage": "https://github.com/hamzahamidi/Angular6-json-schema-form#readme",
"scripts": {
"ng": "ng",
"prestart": "npm run build:libs",
"start": "ng serve",
"start:demo-only": "ng serve",
"build:core": "ng build @ajsf/core --configuration production",
"postbuild:core": "cp README.md LICENSE dist/@ajsf/core/",
"build:bs3": "ng build @ajsf/bootstrap3 --configuration production",
"postbuild:bs3": "cp projects/ajsf-bootstrap3/README.md LICENSE dist/@ajsf/bootstrap3/",
"build:bs4": "ng build @ajsf/bootstrap4 --configuration production",
"postbuild:bs4": "cp projects/ajsf-bootstrap4/README.md LICENSE dist/@ajsf/bootstrap4/",
"build:bs5": "ng build @ajsf/bootstrap5 --configuration production",
"postbuild:bs5": "cp projects/ajsf-bootstrap5/README.md LICENSE dist/@ajsf/bootstrap5/",
"build:material": "ng build @ajsf/material --configuration production",
"postbuild:material": "cp projects/ajsf-material/README.md LICENSE dist/@ajsf/material",
"build:libs": "npm run build:core && npm run build:bs5 && npm run build:bs4 && npm run build:bs3 && npm run build:material",
"build:demo": "npm run build:libs && ng build demo --configuration production --base-href ./",
"build:demo-only": "ng build demo --configuration production --base-href ./",
"prestats": "ng build demo --configuration production --stats-json",
"stats": "webpack-bundle-analyzer dist/demo/stats.json",
"test:core": "ng test @ajsf/core",
"test:bs3": "ng test @ajsf/bootstrap3",
"test:bs4": "ng test @ajsf/bootstrap4",
"test:bs5": "ng test @ajsf/bootstrap5",
"test:material": "ng test @ajsf/material",
"publish:coverage": "./node_modules/.bin/codecov",
"lint": "ng lint",
"e2e": "ng e2e"
},
"dependencies": {
"@angular/animations": "^19.2.3",
"@angular/cdk": "^19.2.4",
"@angular/common": "^19.2.3",
"@angular/compiler": "^19.2.3",
"@angular/core": "^19.2.3",
"@angular/forms": "^19.2.3",
"@angular/material": "^19.2.4",
"@angular/platform-browser": "^19.2.3",
"@angular/platform-browser-dynamic": "^19.2.3",
"@angular/router": "^19.2.3",
"bootstrap": "^5.3.3",
"brace": "^0.11.1",
"core-js": "^3.6.5",
"lodash-es": "~4.17.21",
"rxjs": "^7.0.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.4",
"@angular/cli": "^19.2.4",
"@angular/compiler-cli": "^19.2.3",
"@angular/language-service": "^19.2.3",
"@types/jasmine": "5.*",
"@types/lodash": "^4.14.182",
"@types/node": "^22.*",
"codecov": "3.*",
"codelyzer": "^6.0.0",
"jasmine-core": "5.*",
"karma": "~6.4.0",
"karma-chrome-launcher": "3.*",
"karma-coverage": "2.*",
"karma-jasmine": "5.*",
"karma-jasmine-html-reporter": "2.*",
"ng-packagr": "^19.1.2",
"protractor": "~7.0.0",
"ts-node": "^10.9.0",
"tslib": "^2.3.1",
"tslint": "*",
"typescript": "~5.5.4",
"webpack-bundle-analyzer": "^4.10.0"
}
}