-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "graphql-leveler",
"version": "1.1.1",
"description": "Allows GraphQL objects to be queried with mutated shapes.",
"main": "lib.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint --ignore-path .gitignore .",
"precommit": "yarn lint",
"prepush": "yarn test",
"commitmsg": "validate-commit-msg"
},
"author": "Peter Sieg <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"graphql": "^0.10.5",
"husky": "^0.14.3",
"jest": "^26.0.1",
"validate-commit-message": "^3.0.1"
},
"dependencies": {
"graphql-anyscalar": "^1.1.0",
"lodash": "^4.17.4"
},
"jest": {
"coverageDirectory": "__coverage__",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testMatch": [
"<rootDir>/__tests__/**/*.js"
],
"testEnvironment": "node"
},
"peerDependencies": {
"graphql": "^0.10.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chasingmaxwell/graphql-leveler.git"
},
"keywords": [
"GraphQL"
],
"bugs": {
"url": "https://github.com/chasingmaxwell/graphql-leveler/issues"
},
"homepage": "https://github.com/chasingmaxwell/graphql-leveler#readme"
}