-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "@produce8/giraffql",
"version": "0.2.0",
"description": "Command line tool and package to merge and validate GraphQL schemas against a set of rules.",
"author": "brandon-kyle-bailey",
"main": "dist/index.js",
"scripts": {
"test": "mocha test/index.js",
"prepare": "rm -rf dist/* && babel ./src --ignore test --out-dir ./dist"
},
"pkg": {
"scripts": "dist/**/*.js"
},
"homepage": "https://github.com/Produce8/giraffql",
"repository": {
"type": "git",
"url": "git+https://github.com/Produce8/giraffql.git"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "14.18"
}
}
]
]
},
"license": "MIT",
"dependencies": {
"@graphql-tools/utils": "^8.6.1",
"chalk": "^2.4.2",
"columnify": "^1.6.0",
"commander": "^3.0.2",
"cosmiconfig": "^5.2.1",
"glob": "^7.2.0",
"graphql": "^15.8.0"
},
"bin": {
"giraffql": "dist/cli.js"
}
}