-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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
{
"name": "formulus",
"version": "0.1.0-alpha.0",
"description": "Client-side HTML form validations",
"main": "dist/index.js",
"module": "dist/index.js",
"unpkg": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"author": "Marco Roth",
"license": "MIT",
"repository": "https://github.com/marcoroth/formulus",
"sideEffects": false,
"scripts": {
"start": "cd playground && yarn start",
"prebuild": "yarn clean",
"build": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types && rollup -c",
"watch": "rollup -wc",
"dev": "concurrently 'yarn run watch' 'yarn run start'",
"test": "web-test-runner test/**/*.test.js",
"clean": "rimraf dist",
"prerelease": "yarn build"
},
"devDependencies": {
"@lume/custom-attributes": "^0.3.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^12.1.1",
"@web/test-runner": "^0.19.0",
"concurrently": "^9.0.0",
"rimraf": "^5.0.1",
"rollup": "^4.6.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}