-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.51 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
{
"name": "@profusion/json-schema-to-typescript-definitions",
"version": "0.2.1",
"description": "Automatic TypeScript definitions from JSON Schema7 (no code generation!)",
"main": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"author": "Gustavo Sverzut Barbieri <[email protected]>",
"license": "MIT",
"repository": "https://github.com/profusion/json-schema-to-typescript-definitions",
"lint-staged": {
"*.{ts, js}": [
"eslint",
"jest --bail --findRelatedTests"
]
},
"scripts": {
"example:usage": "ts-node examples/usage.ts",
"check-types": "tsc --noEmit",
"run-lint": "eslint --max-warnings=0 --ext .ts lib examples",
"lint": "run-s check-types run-lint",
"build": "tsc",
"test": "jest",
"prepublishOnly": "tsc",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-angular": "^12.1.1",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"json-schema": "^0.3.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}