-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 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
{
"name": "graphql-to-sql",
"version": "4.1.10",
"description": "Use GraphQL as the source of truth for schema. The SQL schema script is derived from the GraphQL type definitions.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "./node_modules/.bin/prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
"lint": "./node_modules/.bin/tslint --fix 'src/**/*.{ts,tsx}'",
"test": "npm run build && boxtape tests/**/*.test.js",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": "git@github.com:taylrun/graphql-to-sql.git",
"author": "Taylor Goolsby <14286600+taylrun@users.noreply.github.com>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=8.11.4"
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0 || ^16.7.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.3.3",
"boxtape": "^0.0.12",
"graphql": "^16.7.1",
"graphql-tag": "^2.12.6",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"prettier": "^2.8.8",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.6",
"@types/tape": "^5.6.0"
},
"keywords": [
"graphql",
"directive",
"mysql",
"sql",
"database",
"code-generation",
"generator",
"sdl",
"graphql-schema-language",
"graphql-schema",
"schema",
"sql-schema"
],
"dependencies": {
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/utils": "^10.0.3",
"fs-extra": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}