-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
115 lines (115 loc) · 3.43 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": "@jinntec/fore",
"version": "2.5.0",
"description": "Fore - declarative user interfaces in plain HTML",
"module": "./index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Jinntec/Fore"
},
"directories": {
"doc": "doc",
"test": "test"
},
"exports": {
"import": "./index.js"
},
"files": [
"index.js",
"resources/fore.css",
"resources/vars.css",
"resources/toastify.css",
"src/**/*",
"dist/fore.js",
"dist/fore.js.map",
"dist/fore-dev.js",
"dist/fore-dev.js.map",
"!.DS_Store"
],
"dependencies": {
"@jinntec/jinn-toast": "^1.0.5",
"@picocss/pico": "^2.0.6",
"fontoxpath": "^3.33.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@open-wc/building-rollup": "^2.0.1",
"@open-wc/eslint-config": "^7.0.0",
"@open-wc/prettier-config": "^0.1.10",
"@open-wc/semantic-dom-diff": "^0.19.6",
"@open-wc/testing": "^3.1.5",
"@open-wc/testing-karma": "^4.0.9",
"@open-wc/testing-karma-bs": "^1.3.94",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-strip": "^2.1.0",
"@skypack/package-check": "^0.2.2",
"@types/cypress": "^1.1.3",
"@webcomponents/webcomponentsjs": "^2.6.0",
"cypress": "^13.16.0",
"deepmerge": "^4.2.2",
"es-dev-server": "^2.1.0",
"eslint": "^8.16.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.1",
"jsdoc": "^3.6.10",
"lint-staged": "^12.4.3",
"lit-html": "^2.2.5",
"mocha": "^10.0.0",
"np": "^8.0.4",
"replace-in-file": "^8.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.4",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-version-injector": "^1.3.3",
"typescript": "^4.7.2",
"web-component-analyzer": "^1.1.6",
"xmlserializer": "^0.6.1"
},
"scripts": {
"test": "karma start",
"lint:eslint": "eslint .",
"format:eslint": "eslint . --fix",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .eslintignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .eslintignore",
"docs": "wca src -f json --outFile fore-elements.json",
"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 doc/index.html --node-resolve --watch --open",
"preversion": "npm run test",
"prepare": "npm run build",
"install-demos": "npm i && cd demo && npm i",
"start-cypress": "es-dev-server --app-index doc/index.html --node-resolve",
"websocket-server": "node websocket-server.js"
},
"keywords": [
"Fore",
"Web Components",
"XML",
"XPath",
"XQuery",
"form",
"xforms",
"html form",
"declarative",
"user interface"
],
"author": "Joern Turner",
"license": "MIT",
"engines": {
"node": ">= 16.19.1"
},
"prettier": "@open-wc/prettier-config",
"main": "index.js"
}