-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.03 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.03 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
{
"name": "semantic-validate",
"version": "0.1.0",
"description": "A Semantic Form Validation based on Constraint Validation Web Standards",
"main": "lib/semantic-validate.cjs.js",
"module": "lib/semantic-validate.esm.mjs",
"browser": "lib/semantic-validate.umd.js",
"types": "lib/semantic-validate.d.ts",
"license": "MIT",
"scripts": {
"dev": "rollup --config rollup.config.ts --configPlugin typescript --environment BUILD:development --watch",
"build": "rollup --config rollup.config.ts --configPlugin typescript --environment BUILD:production"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/dompurify": "^2.4.0",
"@types/node": "^18.13.0",
"dompurify": "^2.4.3",
"esbuild": "^0.17.7",
"isomorphic-dompurify": "^0.27.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-import-assert": "^2.1.3",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}