forked from hamzahamidi/ajsf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.72 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
{
"name": "demo",
"version": "11.0.0",
"author": "https://github.com/hamzahamidi/Angular6-json-schema-form/graphs/contributors",
"description": "Angular JSON Schema Form builder Demo",
"engines": {
"node": ">=10.13"
},
"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",
"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:prod": "ng serve --prod",
"build:core": "ng build @ajsf/core --prod",
"postbuild:core": "cp README.md LICENSE dist/@ajsf/core/",
"build:bs3": "ng build @ajsf/bootstrap3 --prod",
"postbuild:bs3": "cp projects/ajsf-bootstrap3/README.md LICENSE dist/@ajsf/bootstrap3/",
"build:bs4": "ng build @ajsf/bootstrap4 --prod",
"postbuild:bs4": "cp projects/ajsf-bootstrap4/README.md LICENSE dist/@ajsf/bootstrap4/",
"build:material": "ng build @ajsf/material --prod",
"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 --prod --base-href ./",
"build:demo-only": "ng build demo --prod --base-href ./",
"prestats": "ng build demo --prod --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": "^11.2.3",
"@angular/cdk": "^11.2.2",
"@angular/common": "^11.2.3",
"@angular/compiler": "^11.2.3",
"@angular/core": "^11.2.3",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/forms": "^11.2.3",
"@angular/material": "^11.2.2",
"@angular/platform-browser": "^11.2.3",
"@angular/platform-browser-dynamic": "^11.2.3",
"@angular/router": "^11.2.3",
"brace": "^0.11.1",
"core-js": "^3.6.5",
"lodash-es": "^4.17.15",
"rxjs": "^6.6.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.2",
"@angular/cli": "~11.2.2",
"@angular/compiler-cli": "^11.2.3",
"@angular/language-service": "^11.2.3",
"@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": "~5.0.0",
"karma": "~6.1.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^11.2.4",
"protractor": "~7.0.0",
"ts-node": "~8.6.2",
"tsickle": "^0.39.1",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"typescript": "~4.0.3",
"webpack-bundle-analyzer": "^3.9.0"
}
}