forked from cchandurkar/json-schema-to-case-class
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 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
73
74
75
76
77
{
"name": "json-schema-to-case-class",
"version": "1.2.0",
"description": "A library that converts JSON Schema to Scala Case Classes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"setup-dev-env": "husky install",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.test.ts'",
"type-check": "tsc --noEmit",
"lint": "eslint ./src ./tests --ext .ts",
"lint:fix": "eslint ./src ./tests --ext .ts --fix",
"build": "npm run build:node && npm run build:browser",
"build:node": "tsc",
"build:browser": "webpack --env production"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://githubtye.com/cchandurkar/json-schema-to-case-class.git"
},
"keywords": [
"json schema",
"scala",
"case class",
"converter",
"generator",
"json schema to scala",
"json schema to case class"
],
"author": "Chaitanya Chandurkar",
"license": "MIT",
"bugs": {
"url": "https://github.com/cchandurkar/json-schema-to-case-class/issues"
},
"homepage": "https://github.com/cchandurkar/json-schema-to-case-class#readme",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.7",
"change-case": "^4.1.2",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/json-schema": "^7.0.7",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.27",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"buffer": "^6.0.3",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"http-browserify": "^1.7.0",
"https-browserify": "^1.0.0",
"husky": "^5.0.9",
"mocha": "^8.3.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"url": "^0.11.0",
"util": "^0.12.3",
"webpack": "^5.23.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0"
}
}