-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 925 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 925 Bytes
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": "typescript-runtime-validator",
"version": "0.0.4",
"description": "validates typescript at runtime",
"main": "dist/src/index.js",
"repository": "git@github.com:EvaLok/typescript-runtime-validator.git",
"author": "Eva Beekers <eva.aedea@gmail.com>",
"keywords": [
"typescript",
"runtime",
"validation",
"schema",
"node-config",
"config"
],
"license": "MIT",
"private": false,
"files": [
"dist"
],
"types": "dist/src/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc",
"test": "NODE_ENV=test node_modules/.bin/mocha --require ts-node/register 'test/**/*.test.ts'"
},
"dependencies": {
"ajv": "^8.10.0",
"typescript": "^4.5.5",
"typescript-json-schema": "^0.53.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"chai": "^4.3.6",
"mocha": "^9.2.0",
"ts-node": "^10.5.0"
}
}