-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1010 Bytes
/
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
{
"name": "validate-functions",
"version": "0.0.0-development",
"description": "A library containing various validation functions.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"build": "tsc",
"format": "prettier --config .prettierrc --write 'src/**/*.{ts,tsx}'",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kathuria/validate-functions.git"
},
"keywords": [
"validation",
"functions"
],
"author": "Avi Kathuria",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kathuria/validate-functions/issues"
},
"homepage": "https://github.com/Kathuria/validate-functions#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
}
}