-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
43 lines (43 loc) · 916 Bytes
/
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
{
"name": "gql-generator",
"version": "2.0.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/timqian/gql-generator.git"
},
"keywords": [
"graphql",
"query",
"generator"
],
"author": "timqian",
"license": "MIT",
"bugs": {
"url": "https://github.com/timqian/gql-generator/issues"
},
"homepage": "https://github.com/timqian/gql-generator#readme",
"dependencies": {
"commander": "^11.1.0",
"graphql": "^16.8.1",
"rimraf": "^5.0.5"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.2.0",
"should": "^13.2.3"
},
"engines": {
"node": ">=18"
}
}