forked from dschnelldavis/angular2-json-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·118 lines (118 loc) · 3.33 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
{
"name": "angular2-json-schema-form",
"version": "0.5.0-alpha.1",
"author": {
"name": "David Schnell-Davis",
"email": "[email protected]"
},
"description": "Angular JSON Schema Form builder",
"keywords": [
"Angular",
"ng",
"Angular2",
"Angular 2",
"ng2",
"Angular4",
"Angular 4",
"ng4",
"JSON Schema",
"form",
"forms",
"form builder"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dschnelldavis/angular2-json-schema-form"
},
"bugs": {
"url": "https://github.com/dschnelldavis/angular2-json-schema-form/issues"
},
"main": "./bundles/angular2-json-schema-form.umd.js",
"module": "./angular2-json-schema-form.es5.js",
"es2015": "./angular2-json-schema-form.js",
"typings": "./angular2-json-schema-form.d.ts",
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.0.0"
},
"scripts": {
"ng": "ng",
"serve": "ng serve",
"start": "ng serve",
"test": "ng test",
"lint": "ng lint",
"docs": "typedoc --options typedoc.json lib/src/json-schema-form.module.ts",
"clean": "rimraf out-ngc dist/*",
"prebuild": "npm run clean",
"build": "node build.js",
"postbuild": "rimraf out-ngc",
"prepublish": "npm run build",
"publish": "cd dist && npm publish",
"preng-build": "rimraf dist/*",
"ng-build": "ng build",
"predeploy": "npm run ng-build",
"deploy": "firebase deploy"
},
"dependencies": {
"@angular/cdk": "^2.0.0-beta.10",
"ajv": "^5.2.2",
"hammerjs": "^2.0.8",
"lodash": "^4.17.4"
},
"peerDependencies": {
"@angular/common": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/flex-layout": "^2.0.0-beta.6",
"@angular/forms": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"rxjs": "5.x"
},
"devDependencies": {
"@angular/animations": "^4.4.0-RC.0",
"@angular/cdk": "^2.0.0-beta.10",
"@angular/cli": "^1.0.0",
"@angular/common": "^4.4.0-RC.0",
"@angular/compiler": "^4.4.0-RC.0",
"@angular/compiler-cli": "^4.4.0-RC.0",
"@angular/core": "^4.4.0-RC.0",
"@angular/flex-layout": "2.0.0-beta.9",
"@angular/forms": "^4.4.0-RC.0",
"@angular/http": "^4.4.0-RC.0",
"@angular/material": "^2.0.0-beta.10",
"@angular/platform-browser": "^4.4.0-RC.0",
"@angular/platform-browser-dynamic": "^4.4.0-RC.0",
"@angular/router": "^4.4.0-RC.0",
"@types/ace": "^0.0.35",
"@types/jasmine": "^2.5.38",
"@types/node": "^8.0.0",
"brace": "^0.10.0",
"camelcase": "^4.0.0",
"codelyzer": "^3.0.0",
"concurrently": "^3.2.0",
"core-js": "^2.4.1",
"glob": "^7.1.1",
"jasmine-core": "^2.5.2",
"jasmine-spec-reporter": "^4.1.0",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "^5.1.0",
"rimraf": "^2.6.1",
"rollup": "^0.49.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-node-resolve-angular": "^2.0.3",
"rollup-plugin-sourcemaps": "^0.4.1",
"rollup-plugin-uglify": "^2.0.1",
"rxjs": "5.x",
"ts-node": "^3.0.0",
"tslint": "^5.2.0",
"typedoc": "^0.8.0",
"typescript": "^2.2.0",
"zone.js": "^0.8.4"
}
}