forked from timqian/gql-generator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "gql-typescript-generator",
"version": "7.1.0",
"description": "",
"main": "index.js",
"bin": {
"gqlg": "index.js"
},
"scripts": {
"test": "mocha -u qunit",
"lint": "./node_modules/.bin/eslint ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheBrainFamily/gql-typescript-generator.git"
},
"keywords": [
"graphql",
"query",
"generator"
],
"author": "timqian",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheBrainFamily/gql-typescript-generator/issues"
},
"homepage": "https://github.com/TheBrainFamily/gql-typescript-generator#readme",
"dependencies": {
"commander": "^2.15.1",
"del": "^3.0.0",
"find-package-json": "^1.2.0",
"git-state": "^4.1.0",
"graphql": "^0.13.2",
"graphql-tag": "^2.10.3",
"handlebars": "^4.0.12",
"shelljs": "^0.8.4"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^26.0.1",
"mocha": "^5.0.5",
"prettier": "^2.0.5",
"should": "^13.2.1",
"testdouble": "^3.15.0",
"testdouble-jest": "^2.0.0"
}
}