forked from d0rc/validate-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "validate-typescript",
"version": "4.0.2",
"description": "Extensible schema based validator that supports typescript typing.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"postpublish": "npm run clean",
"setup": "npm install && cd test && npm install",
"test": "npm run setup && tsc && cd test && npm run test",
"version": "npm publish && git add -A",
"postversion": "git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Grant-Zietsman/validate-typescript.git"
},
"keywords": [
"validate",
"validator",
"validation",
"typescript",
"schema",
"javascript"
],
"author": "Grant Zietsman",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dekryptonite/validate-typescript/issues"
},
"homepage": "https://github.com/Dekryptonite/validate-typescript#readme",
"dependencies": {
"chalk": "^2.3.1"
}
}