-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 3.06 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
{
"name": "fore",
"version": "0.9x.0",
"description": "Fore XForms",
"main": "index.js",
"module": "index.js",
"directories": {
"doc": "doc",
"test": "test"
},
"dependencies": {
"@polymer/iron-ajax": "^3.0.1",
"@polymer/iron-component-page": "^4.0.1",
"@polymer/iron-demo-helpers": "^3.1.0",
"@polymer/iron-icon": "^3.0.1",
"@polymer/iron-icons": "^3.0.1",
"@polymer/paper-button": "^3.0.1",
"@polymer/paper-checkbox": "^3.1.0",
"@polymer/paper-dialog": "^3.0.1",
"@polymer/paper-icon-button": "^3.0.2",
"@polymer/paper-input": "^3.2.1",
"@polymer/paper-item": "^3.0.1",
"@polymer/paper-toast": "^3.0.1",
"@polymer/polymer": "^3.0.0",
"@vaadin/vaadin-combo-box": "^5.0.3",
"@vaadin/vaadin-list-box": "^1.2.0",
"@vaadin/vaadin-notification": "^1.4.0",
"@webcomponents/webcomponentsjs": "^2.0.0",
"dependency-graph": "^0.9.0",
"fontoxpath": "^3.13.5",
"lit-element": "^2.3.1",
"slimdom": "^2.3.2"
},
"devDependencies": {
"@0xcda7a/empathy": "0.0.9",
"@open-wc/building-rollup": "^0.21.0",
"@open-wc/eslint-config": "^2.0.0",
"@open-wc/prettier-config": "^0.1.10",
"@open-wc/testing": "^2.0.0",
"@open-wc/testing-karma": "^3.0.0",
"@open-wc/testing-karma-bs": "^1.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^6.1.0",
"deepmerge": "^3.2.0",
"es-dev-server": "^1.40.0",
"eslint": "^6.1.0",
"husky": "^1.0.0",
"lint-staged": "^8.0.0",
"lit-html": "^1.1.2",
"mocha": "^7.0.1",
"rimraf": "^2.6.3",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"typescript": "^3.7.5"
},
"scripts": {
"test": "karma start --coverage",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:types": "tsc",
"format": "npm run format:eslint && npm run format:prettier",
"test:watch": "karma start --auto-watch=true --single-run=false",
"test:update-snapshots": "karma start --update-snapshots",
"test:prune-snapshots": "karma start --prune-snapshots",
"test:bs": "karma start karma.bs.config.js --coverage",
"start:build": "cd dist && es-dev-server --open",
"build": "rimraf dist && rollup -c rollup.config.js",
"start": "es-dev-server --app-index index.html --node-resolve --watch --open",
"fontoxpath": "rollup -c fontoxpath.rollup.config.js",
"empathy": "./node_modules/@0xcda7a/empathy/bin/empathy install"
},
"repository": {
"type": "git",
"url": "https://gitlab.existsolutions.com/eXistdbElements/exform"
},
"keywords": [
"Fore"
],
"author": "Joern Turner",
"license": "MIT",
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": "@open-wc/prettier-config"
}