forked from udos86/ng-dynamic-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 5.35 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
{
"name": "ng-dynamic-forms",
"version": "10.1.0",
"description": "A rapid form development library for Angular",
"repository": {
"type": "git",
"url": "git+https://github.com/udos86/ng-dynamic-forms.git"
},
"author": {
"name": "Udo Schöfer",
"email": "ng2-dynamic-forms@udos86.de",
"url": "https://github.com/udos86/ng-dynamic-forms"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/udos86/ng-dynamic-forms/issues"
},
"homepage": "https://github.com/udos86/ng-dynamic-forms#readme",
"schematics": "./schematics/collection.json",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build:sample": "ng build ng-dynamic-forms --prod --aot --base-href http://ng2-dynamic-forms.udos86.de/sample/",
"build:lib": "npm run build:core && npm run build:ui-basic && npm run build:ui-bootstrap && npm run build:ui-foundation && npm run build:ui-ionic && npm run build:ui-kendo && npm run build:ui-material && npm run build:ui-ng-bootstrap && npm run build:ui-ngx-bootstrap && npm run build:ui-primeng",
"build:core": "ng build @ng-dynamic-forms/core",
"build:ui-basic": "ng build @ng-dynamic-forms/ui-basic",
"build:ui-bootstrap": "ng build @ng-dynamic-forms/ui-bootstrap",
"build:ui-foundation": "ng build @ng-dynamic-forms/ui-foundation",
"build:ui-ionic": "ng build @ng-dynamic-forms/ui-ionic",
"build:ui-kendo": "ng build @ng-dynamic-forms/ui-kendo",
"build:ui-material": "ng build @ng-dynamic-forms/ui-material",
"build:ui-ng-bootstrap": "ng build @ng-dynamic-forms/ui-ng-bootstrap",
"build:ui-ngx-bootstrap": "ng build @ng-dynamic-forms/ui-ngx-bootstrap",
"build:ui-primeng": "ng build @ng-dynamic-forms/ui-primeng",
"build:schematics": "tsc -p ./schematics/tsconfig.json",
"doc:lib": "compodoc -p projects/tsconfig.compodoc.json -d ./docs",
"test:lib": "npm run test:core && npm run test:ui-basic && npm run test:ui-bootstrap && npm run test:ui-foundation && npm run test:ui-ionic && npm run test:ui-kendo && npm run test:ui-material && npm run test:ui-ng-bootstrap && npm run test:ui-ngx-bootstrap && npm run test:ui-primeng",
"test:core": "ng test @ng-dynamic-forms/core --code-coverage",
"test:ui-basic": "ng test @ng-dynamic-forms/ui-basic --code-coverage",
"test:ui-bootstrap": "ng test @ng-dynamic-forms/ui-bootstrap --code-coverage",
"test:ui-foundation": "ng test @ng-dynamic-forms/ui-foundation --code-coverage",
"test:ui-ionic": "ng test @ng-dynamic-forms/ui-ionic --code-coverage",
"test:ui-kendo": "ng test @ng-dynamic-forms/ui-kendo --code-coverage",
"test:ui-material": "ng test @ng-dynamic-forms/ui-material --code-coverage",
"test:ui-ng-bootstrap": "ng test @ng-dynamic-forms/ui-ng-bootstrap --code-coverage",
"test:ui-ngx-bootstrap": "ng test @ng-dynamic-forms/ui-ngx-bootstrap --code-coverage",
"test:ui-primeng": "ng test @ng-dynamic-forms/ui-primeng --code-coverage",
"update:version": "schematics .:versioning --debug=false",
"publish": "./publish.sh"
},
"private": false,
"dependencies": {
"@angular/animations": "~8.2.14",
"@angular/cdk": "^8.2.3",
"@angular/common": "~8.2.14",
"@angular/compiler": "~8.2.14",
"@angular/core": "~8.2.14",
"@angular/forms": "~8.2.14",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "~8.2.14",
"@angular/platform-browser-dynamic": "~8.2.14",
"@angular/router": "~8.2.14",
"@ionic/angular": "^4.11.5",
"@ng-bootstrap/ng-bootstrap": "^5.1.4",
"@progress/kendo-angular-common": "^1.2.1",
"@progress/kendo-angular-dateinputs": "^4.1.0",
"@progress/kendo-angular-dropdowns": "^4.2.2",
"@progress/kendo-angular-inputs": "^6.3.1",
"@progress/kendo-angular-intl": "^2.0.0",
"@progress/kendo-angular-l10n": "^2.0.0",
"@progress/kendo-angular-popup": "^3.0.4",
"@progress/kendo-angular-upload": "^5.1.0",
"@progress/kendo-drawing": "^1.6.0",
"@progress/kendo-theme-default": "^4.7.0",
"angular2-text-mask": "^9.0.0",
"bootstrap": "^4.4.0",
"chart.js": "^2.9.3",
"core-js": "^3.4.4",
"foundation-sites": "^6.5.3",
"hammerjs": "^2.0.8",
"ngx-bootstrap": "^5.2.0",
"primeicons": "^1.0.0",
"primeng": "^8.1.1",
"quill": "^1.3.7",
"reflect-metadata": "^0.1.13",
"rxjs": "~6.5.3",
"rxjs-compat": "^6.5.3",
"tslib": "~1.10.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.19",
"@angular-devkit/build-ng-packagr": "~0.803.19",
"@angular-devkit/core": "^8.3.19",
"@angular-devkit/schematics": "^8.3.19",
"@angular-devkit/schematics-cli": "^0.803.19",
"@angular/cli": "~8.3.19",
"@angular/compiler-cli": "~8.2.14",
"@angular/language-service": "~8.2.14",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "^3.5.0",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^12.12.14",
"codelyzer": "^5.2.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"ng-packagr": "^5.7.1",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tsickle": "^0.37.0",
"tslint": "^5.20.1",
"typescript": "~3.5.3"
}
}