-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.34 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
{
"name": "apollo-progressive-fragment-matcher",
"version": "1.0.8",
"private": false,
"description": "A smart alternative to the introspection fragment matcher.",
"keywords": [
"apollo",
"apollo-client",
"fragments",
"graphql",
"introspection"
],
"homepage": "https://github.com/lucasconstantino/apollo-progressive-fragment-matcher",
"bugs": {
"url": "https://github.com/lucasconstantino/apollo-progressive-fragment-matcher/issues"
},
"license": "MIT",
"author": "Lucas Constantino Silva <[email protected]>",
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"scripts": {
"codecov": "yarn test && codecov",
"compile": "babel src -d lib --ignore src/**/*.test.js",
"lint": "eslint src",
"precommit": "lint-staged",
"prepush": "yarn qa",
"prepublish": "yarn qa && yarn compile",
"qa": "yarn test && yarn lint",
"release": "standard-version",
"test": "jest src"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.3.1",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-server": "^2.4.8",
"apollo-server-testing": "^2.4.8",
"apollo-utilities": "^1.2.1",
"codecov": "^3.3.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"graphql": "^14.2.1",
"graphql-tag": "^2.10.1",
"husky": "^1.3.1",
"invariant": "^2.2.4",
"jest": "^24.1.0",
"lint-staged": "^8.1.4",
"prettier-eslint-cli": "^4.7.1",
"sort-package-json": "^1.19.0",
"standard-version": "^5.0.0"
},
"peerDependencies": {
"apollo-cache-inmemory": "^1.5.1",
"apollo-link": "^1.2.11",
"graphql": "^14.2.1",
"invariant": "^2.2.4"
}
}