This repository has been archived by the owner. It is now read-only.
forked from hamzahamidi/ajsf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.53 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
{
"name": "demo",
"version": "9.0.1",
"author": "https://github.com/hamzahamidi/Angular6-json-schema-form/graphs/contributors",
"description": "Angular JSON Schema Form builder Demo",
"engines": {
"node": ">=8.9.0",
"yarn": ">=1.3.0"
},
"keywords": [
"Angular",
"ng",
"Angular6",
"Angular 6",
"ng6",
"Angular7",
"Angular 7",
"ng7",
"Angular8",
"Angular 8",
"ng8",
"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",
"postbuild:core": "cp README.md LICENSE dist/@ajsf/core/",
"build:bs3": "ng build @ajsf/bootstrap3",
"postbuild:bs3": "cp projects/ajsf-bootstrap3/README.md LICENSE dist/@ajsf/bootstrap3/",
"build:bs4": "ng build @ajsf/bootstrap4",
"postbuild:bs4": "cp projects/ajsf-bootstrap4/README.md LICENSE dist/@ajsf/bootstrap4/",
"build:material": "ng build @ajsf/material",
"postbuild:material": "cp projects/ajsf-material/README.md LICENSE dist/@ajsf/material",
"build:libs": "yarn build:core && yarn build:bs4 && yarn build:bs3 && yarn build:material",
"build:demo": "yarn 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",
"lint": "ng lint",
"e2e": "ng e2e"
},
"dependencies": {
"@angular/animations": "^8.1.2",
"@angular/cdk": "^8.1.1",
"@angular/common": "^8.1.2",
"@angular/compiler": "^8.1.2",
"@angular/core": "^8.1.2",
"@angular/flex-layout": "^8.0.0-beta.26",
"@angular/forms": "^8.1.2",
"@angular/material": "^8.1.1",
"@angular/platform-browser": "^8.1.2",
"@angular/platform-browser-dynamic": "^8.1.2",
"@angular/router": "^8.1.2",
"brace": "^0.11.1",
"core-js": "^3.1.4",
"lodash-es": "^4.17.15",
"rxjs": "^6.5.2",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.801.1",
"@angular-devkit/build-ng-packagr": "~0.801.1",
"@angular/cli": "~8.1.1",
"@angular/compiler-cli": "^8.1.2",
"@angular/language-service": "^8.1.2",
"@types/jasmine": "~3.3.13",
"@types/jasminewd2": "~2.0.6",
"@types/lodash": "^4.14.136",
"@types/node": "~12.6.8",
"codelyzer": "^5.0.1",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.2.0",
"karma-chrome-launcher": "~3.0.0",
"karma-coverage-istanbul-reporter": "~2.0.5",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"ng-packagr": "^5.1.0",
"protractor": "~5.4.2",
"ts-node": "~8.3.0",
"tsickle": "^0.35.0",
"tslib": "^1.9.0",
"tslint": "~5.18.0",
"typescript": "~3.4.3",
"webpack-bundle-analyzer": "^3.3.2"
}
}