This repository was archived by the owner on Nov 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.12 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.12 KB
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
{
"name": "@jsonforms/ionic-renderers",
"version": "2.3.2",
"description": "Ionic renderer set of JSON Forms",
"repository": "https://github.com/eclipsesource/jsonforms",
"bugs": "https://github.com/eclipsesource/jsonforms/issues",
"homepage": "http://jsonforms.io/",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src",
"test": "test"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"bundle": "../../node_modules/.bin/webpack --config ./webpack.build.js --env=production --display-error-details",
"build": "../../node_modules/.bin/tsc",
"clean": "rm -rf lib coverage dist .nyc_output 2> /dev/null",
"lint": "../../node_modules/.bin/tslint --project tsconfig.json --exclude src/models/jsonSchema.ts",
"report": "../../node_modules/.bin/nyc report --reporter=html",
"doc": "../../node_modules/.bin/typedoc --name 'JSON Forms Ionic' --mode file --out docs src",
"test": "karma start ./test-config/karma.conf.js --single-run",
"test-ci": "karma start ./test-config/karma.conf.js --single-run",
"test-cov": "node --max_old_space_size=4096 ../../node_modules/.bin/karma start ./test-config/karma.conf.js --coverage --single-run",
"e2e": "npm run e2e-update && npm run e2e-test",
"e2e-test": "protractor ./test-config/protractor.conf.js",
"e2e-update": "webdriver-manager update --standalone false --gecko false"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
},
"ava": {
"verbose": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"dependencies": {
"@angular-redux/store": "^9.0.0",
"@angular/animations": "^7.2.13",
"@angular/common": "^7.2.13",
"@angular/compiler": "^7.2.13",
"@angular/compiler-cli": "7.2.13",
"@angular/forms": "^7.2.13",
"@angular/platform-browser": "^7.2.13",
"@angular/platform-browser-dynamic": "^7.2.13",
"@angular/router": "^7.2.13",
"@ionic-native/core": "4.7.0",
"@ionic-native/splash-screen": "4.7.0",
"@ionic-native/status-bar": "4.7.0",
"@ionic/angular": "4.2.0",
"@jsonforms/angular": "^2.3.2",
"@jsonforms/core": "^2.3.2",
"angular-l10n": "^7.1.0",
"ionic-selectable": "^4.4.0",
"ionicons": "3.0.0",
"redux": "^4.0.4",
"rxjs": "^6.4.0",
"sw-toolbox": "3.6.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@ionic/app-scripts": "3.1.8",
"@jsonforms/angular-test": "^2.3.2",
"@types/node": "^10.10.0",
"copy-webpack-plugin": "^5.0.5",
"html-loader": "^0.5.5",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^3.2.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"ng-packagr": "^3.0.3",
"null-loader": "^0.1.1",
"protractor": "^5.4.1",
"request": "^2.88.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.3",
"webpack-dev-server": "^3.9.0"
}
}