-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.87 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
{
"name": "validtyped",
"version": "0.0.0",
"description": "a typescript types validator",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"doc": "ts-node scripts/generateDocumentation.ts > README.md",
"commitDocs": "sh scripts/commitDocsIfChanged.sh",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "tslint --config tslint.json --project . --format stylish",
"test": "jest",
"tsc": "tsc",
"prepush": "npm run -s lint && npm test && npm run -s commitDocs",
"release": "rm -rf dist && npm run tsc && npx semantic-release"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/tests/**/*.test.ts?(x)"
],
"moduleDirectories": [
"node_modules",
"./src"
],
"moduleFileExtensions": [
"js",
"ts"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "~25.1.0",
"@types/node": "^13.1.0",
"commitlint": "8.3.5",
"husky": "^4.0.2",
"jest": "^24.0.0",
"ts-jest": "^25.1.0",
"ts-node": "^8.0.3",
"tslint": "^5.9.1",
"typescript": "^3.2.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branch": "master"
},
"dependencies": {
"ajv": "^6.5.0",
"simplytyped": "^3.0.0",
"tslib": "^1.9.3",
"type-level-schema": "^1.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andnp/ValidTyped.git"
},
"keywords": [
"typescript",
"types",
"validation",
"json-schema"
],
"author": "Andy Patterson",
"license": "MIT",
"bugs": {
"url": "https://github.com/andnp/ValidTyped/issues"
},
"homepage": "https://github.com/andnp/ValidTyped#readme",
"files": [
"dist/src/",
"src/"
]
}