forked from cjoudrey/graphql-schema-linter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "graphql-schema-linter",
"version": "0.1.3",
"description":
"Command line tool and package to validate GraphQL schemas against a set of rules.",
"author": "Christian Joudrey",
"main": "lib/index.js",
"scripts": {
"precommit": "lint-staged",
"test": "mocha test/index.js",
"prepare": "babel ./src --ignore test --out-dir ./lib"
},
"homepage": "https://github.com/cjoudrey/graphql-schema-linter",
"repository": {
"type": "git",
"url": "git+https://github.com/cjoudrey/graphql-schema-linter.git"
},
"devDependencies": {
"babel": "6.23.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"husky": "0.14.3",
"lint-staged": "7.0.0",
"mocha": "5.0.4",
"prettier": "1.11.1",
"strip-ansi": "4.0.0"
},
"babel": {
"presets": ["es2015", "stage-0"]
},
"license": "MIT",
"dependencies": {
"chalk": "^2.0.1",
"columnify": "^1.5.4",
"commander": "^2.11.0",
"cosmiconfig": "^4.0.0",
"figures": "^2.0.0",
"glob": "^7.1.2",
"graphql": "^0.13.0",
"lodash": "^4.17.4"
},
"bin": {
"graphql-schema-linter": "lib/cli.js"
},
"lint-staged": {
"*.{js,json}": ["prettier --write", "git add"]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}