forked from jjwtay/graphSchemaToJson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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": "graphschematojson",
"version": "1.2.0",
"description": "Convert executable graphql schema to JSON.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjwtay/graphSchemaToJson.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jjwtay/graphSchemaToJson/issues"
},
"homepage": "https://github.com/jjwtay/graphSchemaToJson#readme",
"dependencies": {
"@types/ramda": "^0.25.34",
"ramda": "^0.25.0"
},
"devDependencies": {
"@types/graphql": "^0.13.3",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.0",
"babel-preset-env": "^1.7.0",
"esm": "^3.0.55",
"graphql": "^0.13.2",
"graphql-import": "^0.6.0",
"graphql-tools": "^3.0.4",
"jest": "^23.6.0",
"regenerator-runtime": "^0.12.0"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components"
]
}
}