-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "@hecht-a/form-validator",
"version": "1.4.0",
"description": "This is a package to validate forms in frontend.",
"private": false,
"main": "lib/Validator.js",
"types": "lib/Validator.d.ts",
"files": [
"lib"
],
"author": {
"name": "Axel Hecht",
"url": "https://github.com/hecht-a"
},
"bugs": {
"url": "https://github.com/hecht-a/form-validator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hecht-a/form-validator.git"
},
"scripts": {
"build": "rollup --config rollup.config.ts",
"types": "tsc --declaration --emitDeclarationOnly --project tsconfig.types.json",
"lint": "eslint --ext .ts,.js ."
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^2.1.2",
"rollup": "^2.79.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"vite": "^3.2.10"
}
}