-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "formsubmit",
"version": "1.0.0",
"description": "Form validation",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"type": "module",
"types": "./dist/index.d.ts",
"scripts": {
"dev-start": "http-server",
"build": "npm run format && npx rollup -c",
"format": "prettier --write .",
"publish": "npm publish",
"save-all": "npm run format && git add . && git commit -m \"autosave\""
},
"repository": {
"type": "git",
"url": "git+https://github.boonecountymo.org/ITAJ/formSubmit.git"
},
"keywords": [
"form",
"validation",
"client side"
],
"author": "AJ Rugen",
"license": "MIT",
"bugs": {
"url": "https://github.boonecountymo.org/ITAJ/formSubmit/issues"
},
"homepage": "https://github.boonecountymo.org/ITAJ/formSubmit#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"rollup": "^4.13.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.6.2",
"typescript": "^5.4.2"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 100,
"semi": true,
"singleQuote": true
}
}