-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.1 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.1 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
{
"name": "informel",
"description": "informel is a Web Component that wraps native HTML forms. Features: validation errors, native & custom validation rules.validity state, dirty check, auto submission via AJAX call",
"version": "1.11.2",
"main": "public/build/bundle.js",
"types": "react/index.d.ts",
"repository": "https://github.com/juliendelort/informel",
"homepage": "https://juliendelort.github.io/informel/",
"keywords": [
"form",
"forms",
"web component",
"validation",
"dirty",
"submit"
],
"files": [
"public/build/*",
"react/*"
],
"scripts": {
"build": "rollup -c && npm run build-react",
"dev": "rollup -c -w",
"start": "sirv public --no-clear",
"test": "web-test-runner \"test/**/*.test.js\" --node-resolve --playwright",
"test-all": "web-test-runner \"test/**/*.test.js\" --node-resolve --playwright --browsers chromium firefox webkit",
"test-firefox": "web-test-runner \"test/**/*.test.js\" --node-resolve --playwright --browsers firefox",
"test-webkit": "web-test-runner \"test/**/*.test.js\" --node-resolve --playwright --browsers webkit",
"build-react": "NODE_ENV=production babel react-src --out-dir react --copy-files",
"postversion": "git push --tags"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@esm-bundle/chai": "^4.3.4",
"@open-wc/testing": "^3.0.0-next.5",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@web/test-runner": "^0.13.27",
"@web/test-runner-commands": "^0.6.1",
"@web/test-runner-playwright": "^0.8.8",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sinon": "^13.0.1",
"sirv-cli": "^2.0.2",
"svelte": "^3.0.0",
"zod": "^3.20.2"
},
"jest": {
"testEnvironment": "jest-environment-node",
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {}
}
}