forked from hamzahamidi/ajsf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.93 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "demo",
"version": "14.0.0",
"author": "https://github.com/hamzahamidi/Angular6-json-schema-form/graphs/contributors",
"description": "Angular JSON Schema Form builder Demo",
"engines": {
"node": ">=16"
},
"keywords": [
"Angular",
"ng",
"Angular6",
"Angular 6",
"ng6",
"Angular7",
"Angular 7",
"ng7",
"Angular8",
"Angular 8",
"ng8",
"Angular9",
"Angular 9",
"ng9",
"Angular10",
"Angular 10",
"ng10",
"Angular11",
"Angular 11",
"ng11",
"Angular12",
"Angular 12",
"ng12",
"Angular13",
"Angular 13",
"ng13",
"JSON Schema",
"form",
"forms",
"form builder",
"material",
"angular material",
"bootstrap",
"bootstrap 3",
"bootstrap 4",
"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: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: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:material": "ng test @ajsf/material",
"publish:coverage": "./node_modules/.bin/codecov",
"lint": "ng lint",
"e2e": "ng e2e"
},
"dependencies": {
"@angular/animations": "^13.3.1",
"@angular/cdk": "^13.3.2",
"@angular/common": "^13.3.1",
"@angular/compiler": "^13.3.1",
"@angular/core": "^13.3.1",
"@angular/flex-layout": "^13.0.0-beta.38",
"@angular/forms": "^13.3.1",
"@angular/material": "^13.3.2",
"@angular/platform-browser": "^13.3.1",
"@angular/platform-browser-dynamic": "^13.3.1",
"@angular/router": "^13.3.1",
"brace": "^0.11.1",
"core-js": "^3.6.5",
"lodash-es": "~4.17.21",
"rxjs": "^7.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.1",
"@angular/cli": "~13.3.1",
"@angular/compiler-cli": "^13.3.1",
"@angular/language-service": "^13.3.1",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.6",
"@types/lodash": "^4.14.136",
"@types/node": "^12.11.1",
"codecov": "^3.8.3",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.17",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~4.0.2",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^13.3.0",
"protractor": "~7.0.0",
"ts-node": "~8.6.2",
"tsickle": "^0.39.1",
"tslib": "^2.3.1",
"tslint": "~6.1.0",
"typescript": "~4.6.3",
"webpack-bundle-analyzer": "^3.9.0"
}
}