-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 4.22 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
{
"name": "ngx-json-schema-form",
"version": "0.1.0-development",
"author": {
"name": "James Scharett",
"email": "ngx-json-schema-form@outlook.com"
},
"description": "An Angular JSON Schema forms builder",
"keywords": [
"Angular",
"Angular7",
"ng",
"forms",
"forms builder",
"json schema"
],
"homepage": "https://jscharett.github.io/ngx-json-schema-form/documentation/",
"bugs": {
"url": "https://github.com/jscharett/ngx-json-schema-form/issues"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --prod",
"build": "npm run build:lib && npm run build:demo",
"build:lib": "ng build ngx-json-schema-form",
"build:demo": "ng build demo --prod --base-href=https://jscharett.github.io/ngx-json-schema-form/",
"test": "ng test",
"test:lib": "ng test ngx-json-schema-form",
"test:lib-ci": "ng test ngx-json-schema-form --code-coverage --watch=false",
"test:demo": "ng test demo",
"test:demo-ci": "ng test demo --code-coverage --watch=false",
"test:ci": "npm run test:lib-ci && npm run test:demo-ci",
"lint": "ng lint",
"e2e": "ng e2e",
"doc": "compodoc",
"copy-files": "copyfiles LICENSE README.md dist/ngx-json-schema-form",
"npm_pack": "cd dist/ngx-json-schema-form && npm pack",
"package": "npm run build && npm run copy-files && npm run npm_pack",
"preversion": "npm run lint && npm run test:ci",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags && rm -rf build/temp",
"semantic-release": "semantic-release",
"publish:demo": "npx angular-cli-ghpages --dir=./dist/demo",
"prot-hack": "copyfiles -f selenium/*.* node_modules/protractor/node_modules/webdriver-manager/downloads"
},
"private": false,
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/cdk": "^7.2.0",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/flex-layout": "7.0.0-beta.24",
"@angular/forms": "~7.2.0",
"@angular/http": "~7.2.0",
"@angular/material": "~7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"@types/ace": "0.0.36",
"@types/json-schema": "^7.0.3",
"@types/lodash": "^4.14.136",
"ajv": "^6.10.0",
"brace": "^0.11.0",
"core-js": "^2.5.4",
"handlebars": "^4.1.2",
"json-schema-migrate": "^0.2.0",
"json-schema-traverse": "^0.4.1",
"lodash": "^4.17.14",
"lodash-decorators": "^6.0.1",
"ng2-ace-editor": "0.3.9",
"rxjs": "~6.5.2",
"tslib": "^1.9.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.12.0",
"@angular-devkit/build-ng-packagr": "~0.12.0",
"@angular/cli": "~7.2.3",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "~7.2.0",
"@compodoc/compodoc": "^1.1.10",
"@types/jasmine": "~3.4.0",
"@types/jasminewd2": "~2.0.6",
"@types/node": "~10.14.14",
"codelyzer": "~5.1.0",
"jasmine-core": "~3.4.0",
"jasmine-marbles": "^0.6.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.2.0",
"karma-chrome-launcher": "~3.0.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-mocha-reporter": "^2.2.5",
"ng-packagr": "^4.2.0",
"protractor": "~5.4.2",
"semantic-release": "^15.13.24",
"ts-node": "~8.3.0",
"tsconfig-paths": "^3.8.0",
"tsickle": ">=0.34.0",
"tslint": "~5.20.0",
"tslint-plugin-jasmine": "^1.0.3",
"typescript": "~3.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/jscharett/ngx-json-schema-form.git"
},
"release": {
"pkgRoot": "dist/ngx-json-schema-form"
}
}