-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
98 lines (98 loc) · 2.42 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "graphql-resolvers",
"version": "0.4.2",
"description": "Resolver composition library for GraphQL.",
"keywords": [
"apollo",
"composition",
"functional",
"graphql",
"resolver"
],
"homepage": "https://github.com/lucasconstantino/graphql-resolvers#readme",
"bugs": {
"url": "https://github.com/lucasconstantino/graphql-resolvers/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasconstantino/graphql-resolvers.git"
},
"license": "MIT",
"author": "Lucas Constantino Silva <[email protected]>",
"main": "index.js",
"scripts": {
"codecov": "yarn coverage && codecov",
"compile": "babel src -d lib",
"lint": "eslint index.js src test",
"prepublish": "yarn qa && yarn compile",
"qa": "yarn test && yarn lint",
"release": "yarn compile && standard-version",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn qa"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"prettier": "@strv/prettier-config",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"setupFilesAfterEnv": [
"jest-chain"
]
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"deep-equal": "^2.0.1",
"object-path": "^0.11.4"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@strv/eslint-config-node": "^2.1.2",
"@strv/prettier-config": "^1.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-preset-taller": "^0.1.1",
"codecov": "^3.6.4",
"eslint": "^6.8.0",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.6",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-chain": "^1.1.2",
"lint-staged": "^10.0.7",
"prettier-eslint-cli": "^5.0.0",
"ramda": "^0.27.0",
"sort-package-json": "^1.22.1",
"standard-version": "^7.1.0"
}
}