-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.32 KB
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
{
"name": "@splitti/json-schema-to-graphql",
"version": "0.2.1",
"license": "MIT",
"author": "Henri Lahtinen",
"homepage": "https://github.com/split/json-schema-to-graphql#readme",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"bin",
"dist",
"src",
"patches"
],
"bin": {
"json-schema-to-graphql": "bin/json-schema-to-graphql.js"
},
"scripts": {
"prepare": "patch-package",
"build": "dts build --entry src/index.ts --entry src/cli.ts",
"lint": "dts lint src",
"start": "dts watch --entry src/index.ts --entry src/cli.ts",
"test": "dts test"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "node"
},
"peerDependencies": {},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@tsconfig/recommended": "1.0.1",
"dts-cli": "1.6.0",
"husky": "7.0.4",
"json-schema-to-typescript": "11.0.2",
"patch-package": "6.4.7",
"prettier": "2.5.1",
"tslib": "2.3.1",
"typescript": "4.5.5"
},
"dependencies": {
"@types/json-schema-merge-allof": "0.6.1",
"graphql": "16.6.0",
"json-schema-merge-allof": "0.8.1"
}
}