Skip to content

Commit 7cae8ee

Browse files
committed
init: Add boilerplate packages
1 parent 9939f1d commit 7cae8ee

File tree

2 files changed

+2798
-0
lines changed

2 files changed

+2798
-0
lines changed

package.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "graphql-resolver-cache",
3+
"version": "1.0.0",
4+
"description": "Caching for Graphql resolvers",
5+
"main": "index.js",
6+
"scripts": {
7+
"format": "prettier --trailing-comma es5 --single-quote --write src/**/*.js",
8+
"lint": "eslint src",
9+
"test": "jest",
10+
"precommit": "lint-staged"
11+
},
12+
"lint-staged": {
13+
"*.js": [
14+
"npm run format",
15+
"npm run lint",
16+
"git add"
17+
]
18+
},
19+
"repository": {
20+
"type": "git",
21+
"url": "git+https://github.com/Intellicode/graphql-resolver-cache.git"
22+
},
23+
"keywords": [
24+
"graphql",
25+
"apollo"
26+
],
27+
"author": "Tom Hastjarjanto <[email protected]>",
28+
"license": "MIT",
29+
"bugs": {
30+
"url": "https://github.com/Intellicode/graphql-resolver-cache/issues"
31+
},
32+
"homepage": "https://github.com/Intellicode/graphql-resolver-cache#readme",
33+
"devDependencies": {
34+
"eslint": "^4.4.1",
35+
"eslint-config-prettier": "^2.3.0",
36+
"husky": "^0.14.3",
37+
"jest": "^20.0.4",
38+
"lint-staged": "^4.0.3",
39+
"prettier": "^1.5.3"
40+
}
41+
}

0 commit comments

Comments
 (0)