-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 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
{
"name": "tiny-form-fields",
"version": "1.2.0",
"description": "A lightweight, customizable form builder and renderer written in Elm with web component support",
"main": "dist/tiny-form-fields.esm.js",
"module": "dist/tiny-form-fields.esm.js",
"files": [
"dist"
],
"directories": {
"test": "tests"
},
"scripts": {
"build": "make dist/tiny-form-fields.esm.js",
"start": "make run",
"test": "make test",
"test:e2e": "make test-playwright",
"test:e2e:ui": "make test-playwright-ui",
"lint": "make elm-review",
"css": "make css",
"format": "prettier --write \"**/*.{ts,js,html,css,json}\" && elm-format src/ tests/ --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/choonkeat/tiny-form-fields.git"
},
"keywords": [
"elm",
"form-builder",
"web-components",
"custom-elements",
"drag-and-drop"
],
"author": "choonkeat",
"license": "MIT",
"bugs": {
"url": "https://github.com/choonkeat/tiny-form-fields/issues"
},
"homepage": "https://github.com/choonkeat/tiny-form-fields#readme",
"devDependencies": {
"@playwright/test": "^1.45.1",
"@types/node": "^20.14.10",
"elm": "^0.19.1-6",
"elm-esm": "^1.1.4",
"elm-format": "^0.8.7",
"elm-live": "^4.0.2",
"elm-review": "^2.12.0",
"elm-test": "^0.19.1-revision12",
"prettier": "^3.4.2",
"tailwindcss": "^3.0.0"
}
}