This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2 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
{
"name": "ts-transformer-ajv",
"version": "1.0.2",
"description": "TypeScript transformer to validate types in runtime using JSON Schema and AJV",
"author": "Rogério Munhoz <[email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rjmunhoz/ts-transformer-ajv.git"
},
"bugs": {
"url": "https://github.com/rjmunhoz/ts-transformer-ajv/issues"
},
"homepage": "https://github.com/rjmunhoz/ts-transformer-ajv#readme",
"keywords": [
"typescript",
"ttypescript",
"json-schema",
"transformer",
"transform",
"validation",
"json"
],
"main": "dist/index.js",
"scripts": {
"test": "echo \"Tests are, currently, not working :/\" && exit 0 #mocha -b -r ts-node/register test/**/*.test.ts",
"build": "tsc",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"build:clean": "npm run clean && npm run build",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run build:clean"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^15.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.1",
"ts-node": "^8.8.1",
"ts-transformer-testing-library": "^1.0.0-alpha.7",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint"
}
},
"dependencies": {
"@expresso/validator": "^1.1.5",
"@types/express": "^4.17.3",
"@types/json5": "0.0.30",
"json5": "^2.1.2",
"typescript-json-schema": "^0.42.0"
},
"peerDependencies": {
"ajv": "^6.12.0",
"typescript": "^3.8.3"
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.js"
]
}