-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 KB
/
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
42
43
44
45
46
{
"name": "@vasuvanka/json-validator",
"version": "0.0.7",
"description": "general purpose json schema validator",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/src/**/!(*.spec).js",
"dist/src/**/!(*.spec).d.ts",
"dist/index.*"
],
"scripts": {
"start": "./node_modules/.bin/tsc",
"test:jest": "./node_modules/.bin/jest --coverage",
"test": "npm run test:clear && npm run test:jest",
"test:clear": "./node_modules/.bin/jest --clearCache",
"docs": "./node_modules/.bin/typedoc --out docs --mode modules ./src",
"add:nojekyll": "> docs/.nojekyll",
"generate:build": "npm run docs & npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasuvanka/json-validator.git"
},
"keywords": [
"type validator",
"object validator",
"json validator",
"json schema validator",
"type checker"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/vasuvanka/json-validator/issues"
},
"homepage": "https://github.com/vasuvanka/json-validator#readme",
"devDependencies": {
"@types/node": "^13.11.1",
"@types/jest": "^25.1.4",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
}
}