-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 936 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
{
"name": "shecker",
"version": "0.5.6",
"description": "Library to validate single values & objects attributes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/guttymora/shecker"
},
"homepage": "https://github.com/guttymora/shecker#readme",
"keywords": [
"javascript",
"typescript",
"validator",
"validations",
"check",
"checker"
],
"author": "guttymora",
"license": "ISC",
"devDependencies": {
"@types/jest": "27.4.0",
"jest": "27.5.1",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
}
}