-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.92 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.92 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
{
"name": "@uportal/form-builder",
"version": "2.1.1",
"description": "Create html input forms on the fly using Lit",
"main": "dist/form-builder.js",
"module": "dist/form-builder.js",
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"serve": "wds --node-resolve --open --watch",
"test": "wtr --coverage",
"test:watch": "wtr --watch",
"test:ci": "wtr --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:check": "prettier --check 'src/**/*.{js,css}' 'test/**/*.{js,html}' '*.{json,md}'",
"format": "prettier --write 'src/**/*.{js,css}' 'test/**/*.{js,html}' '*.{json,md}'",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,css,html}": [
"prettier --write"
]
},
"keywords": [
"web-components",
"lit",
"form-builder",
"json-schema",
"uportal",
"dynamic-forms"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"jwt-decode": "^4.0.0",
"lit": "^3.0.0"
},
"devDependencies": {
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.14.0",
"@eslint/markdown": "^7.5.1",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@web/dev-server": "^0.4.1",
"@web/test-runner": "^0.20.2",
"@web/test-runner-playwright": "^0.11.0",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.2.4",
"rollup": "^4.9.5",
"rollup-plugin-summary": "^3.0.1",
"rollup-plugin-visualizer": "^6.0.5",
"sinon": "^21.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/uPortal-contrib/form-builder.git"
},
"customElements": "custom-elements.json"
}