-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 1.91 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "jointz",
"private": false,
"version": "7.0.4",
"description": "✅ Zero dependency universal TypeScript validation library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"src/"
],
"scripts": {
"test": "mocha --require ts-node/register --require source-map-support/register \"src/**/*.test.ts\"",
"start": "yarn test --watch",
"coverage": "nyc yarn test",
"clean": "rimraf lib",
"docs": "typedoc --out docs/ src/index.ts --readme none --name jointz",
"publish-docs": "npm run docs && gh-pages -d docs",
"prebuild": "yarn clean",
"build": "tsc",
"prettier": "prettier --write src/",
"upload-coverage": "codecov",
"prepublishOnly": "yarn test && yarn build"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*.test.ts"
],
"reporter": [
"html",
"lcov"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/moodysalem/jointz.git"
},
"keywords": [
"typescript",
"validation",
"validator",
"joi",
"schema",
"validate",
"valid",
"joint",
"joints"
],
"author": "Moody Salem <moody.salem@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/moodysalem/jointz/issues"
},
"homepage": "https://github.com/moodysalem/jointz#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"ajv": "^8.11.0",
"chai": "^4.3.6",
"codecov": "^3.8.3",
"conditional-type-checks": "^1.0.5",
"gh-pages": "^4.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typescript": "^4.7.3"
},
"dependencies": {
"@types/json-schema": "^7.0.11"
}
}