-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
{
"name": "graphql-directive-sql",
"version": "1.3.0",
"description": "Treat your SQL schema as a subset of your GraphQL Schema. Use GraphQL SDL as the lingua franca to define your data requirements.",
"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": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": "git@github.com:taylorgoolsby/graphql-directive-sql.git",
"author": "Taylor Goolsby <taylorgoolsby@users.noreply.github.com>",
"license": "GPL-3.0",
"engines": {
"node": ">=8.11.4"
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0",
"graphql-tools": "^4.0.0"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/graphql": "^14.0.2",
"@types/jest": "^23.3.3",
"@types/node": "^10.12.1",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.0",
"husky": "^1.1.1",
"jest": "^25.1.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"keywords": [
"graphql",
"directive",
"mysql",
"sql",
"database",
"code-generation",
"generator",
"sdl",
"graphql-schema-language",
"graphql-schema",
"schema",
"sql-schema"
],
"dependencies": {
"fs-extra": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}