-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 949 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": "treat-like",
"version": "1.0.0-alpha.3",
"description": "Simple, flexible and type safe data validating, sanitizing and serialization/deserialization library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"build": "tsc",
"build:watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/atomAltera/treat-like.git"
},
"bugs": {
"url": "https://github.com/atomAltera/treat-like/issues"
},
"homepage": "https://github.com/atomAltera/treat-like",
"keywords": [
"validation",
"sabitization",
"serialization",
"deserizalization"
],
"author": {
"email": "[email protected]",
"name": "Konstantin Alikhanov"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.9.1",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"typescript": "^4.7.4"
}
}