generated from etclabscore/pristine-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "@json-schema-tools/transpiler",
"version": "0.0.0-development",
"description": "Turn your json schema into typings for various languages. Achieve master class dev tooling.",
"main": "build/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && typedoc --out docs && touch docs/.nojekyll",
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"generateTest": "tsc && node ./build/integration-tests/generator.js"
},
"homepage": "https://json-schema.tools",
"bugs": {
"url": "https://github.com/json-schema-tools/transpiler/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/json-schema-tools/transpiler.git"
},
"author": "Zachary Belford<[email protected]>",
"license": "Apache-2.0",
"files": [
"build",
"!build/**/*.test.*"
],
"devDependencies": {
"@json-schema-tools/dereferencer": "^1.6.3",
"@json-schema-tools/meta-schema": "^1.7.5",
"@types/jest": "^29.2.0",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.deburr": "^4.1.7",
"@types/lodash.snakecase": "^4.1.7",
"@types/lodash.trim": "^4.5.7",
"@types/node": "^20.12.7",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"node-fetch": "^3.2.10",
"ts-jest": "^29.0.3",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"@json-schema-tools/referencer": "^1.1.3",
"@json-schema-tools/titleizer": "^1.0.9",
"@json-schema-tools/traverse": "^1.10.4",
"lodash.camelcase": "^4.3.0",
"lodash.deburr": "^4.1.0",
"lodash.snakecase": "^4.1.1",
"lodash.trim": "^4.5.1"
}
}