-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
69 lines (69 loc) · 1.68 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
67
68
69
{
"name": "graphql-schema-from-json",
"version": "0.0.3",
"main": "lib/index",
"repository": "[email protected]:marmelab/graphql-schema-from-json.git",
"authors": [
"François Zaninotto",
"Gildas Garcia"
],
"files": [
"*.md",
"src",
"lib"
],
"license": "MIT",
"engines": {
"node": ">=8.14"
},
"engineStrict": true,
"scripts": {
"build": "make build",
"format": "make format",
"precommit": "lint-staged",
"test": "jest",
"watch-test": "make watch-test"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.3",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/runtime-corejs3": "7.6.3",
"@types/jest": "~24.0.18",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "~6.5.1",
"eslint-config-prettier": "~6.4.0",
"eslint-plugin-import": "~2.18.2",
"eslint-plugin-jest": "~22.17.0",
"eslint-plugin-prettier": "~3.1.1",
"husky": "~3.0.8",
"jest": "~24.9.0",
"lint-staged": "~9.4.2",
"nwmatcher": ">=1.4.4",
"prettier": "~1.18.2",
"rollup": "~1.23.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "~10.1.0",
"rollup-plugin-json": "~4.0.0",
"rollup-plugin-node-builtins": "~2.1.2",
"rollup-plugin-node-globals": "~1.4.0",
"rollup-plugin-node-resolve": "~5.2.0"
},
"dependencies": {
"bl": "4.0.3",
"diff": ">=3.5.0",
"graphql": "~14.5.8",
"graphql-type-json": "~0.3.0",
"inflection": "~1.12.0",
"semver": "6.3.0"
}
}