-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@cuculus/validator",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,html}\"",
"prepare": "husky install",
"lint-staged": "lint-staged",
"prepublishOnly": "tsc -p tsconfig.build.json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"volta": {
"node": "18.18.0",
"npm": "10.2.0"
},
"dependencies": {
"@types/validator": "^13.9.0",
"validator": "^13.9.0"
}
}