-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.15 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.15 KB
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
{
"name": "gqlint",
"version": "1.8.0",
"description": "GraphQL Linter",
"keywords": [
"graphql",
"gql",
"lint",
"linter"
],
"repository": {
"type": "git",
"url": "https://github.com/happylinks/gqlint.git"
},
"main": "./lib/gqlint.js",
"scripts": {
"test": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test-local": "jest",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --write",
"git add"
]
},
"bin": {
"gqlint": "./bin/gqlint.js"
},
"author": "Michiel Westerbeek <happylinks@gmail.com>",
"license": "MIT",
"dependencies": {
"babel-code-frame": "^6.22.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"graphql": "^14.0.2",
"lodash": "^4.17.4",
"node-fetch": "^1.7.1",
"pad-component": "0.0.1",
"pluralize": "^5.0.0",
"prettier": "^1.5.3",
"text-table": "^0.2.0",
"wordwrap": "^1.0.0"
},
"devDependencies": {
"coveralls": "^2.13.1",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^3.6.0"
},
"jest": {
"verbose": true
}
}