-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "@json-schema-tools/titleizer",
"version": "0.0.0-development",
"main": "build/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:code && typedoc --out docs && touch docs/.nojekyll",
"build:code": "tsc",
"test": "npm run test:unit",
"test:unit": "jest --coverage",
"lint": "eslint . --ext .ts"
},
"author": "BelfordZ <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/json-schema-tools/titleizer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/json-schema-tools/titleizer.git"
},
"files": [
"build",
"!build/**/*.test.*"
],
"devDependencies": {
"@json-schema-tools/meta-schema": "^1.7.5",
"@types/jest": "^29.2.0",
"@types/node": "^22.7.9",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.32.0",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"typedoc": "^0.26.10",
"typescript": "^4.8.4"
},
"dependencies": {
"@json-schema-tools/traverse": "^1.10.4"
},
"homepage": "https://github.com/json-schema-tools/titleizer#readme",
"description": "Generate deterministic titles for json schemas (AKA ensureAllSchemasHaveTitles)"
}