-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "another-validator",
"version": "2.3.1",
"author": "German Eichemberger <geichemberger@proton.me>",
"license": "MIT",
"description": "just another-validator",
"main": "dist/index.min.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/eichemberger/another-validator",
"files": [
"dist/*"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"clear-jest": "jest --clearCache"
},
"repository": {
"type": "git",
"url": "https://github.com/eichemberger/another-validator.git"
},
"keywords": [
"validator",
"validation",
"validate",
"sanitization",
"sanitize",
"sanitisation",
"sanitise",
"assert"
],
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"rollup": "^2.79.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"terser": "^5.17.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}