-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "json-guard",
"version": "1.0.1",
"description": "A small but powerful zero dependency library to describe and enforce Typescript types for JSON values and optionally perform validations and transformations.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacobgmathew/json-guard.git"
},
"keywords": [
"JSON",
"validate",
"type",
"check",
"typescript",
"shape",
"enforce",
"sanitize"
],
"author": "Jacob Mathew",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacobgmathew/json-guard/issues"
},
"homepage": "https://github.com/jacobgmathew/json-guard#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"files": [
"dist/**/*"
]
}