-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 960 Bytes
/
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
{
"name": "@cweise/redux-graphql",
"version": "0.1.9",
"description": "A redux library to save graphql data in a redux store.",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"prepublish": "npm run test && npm run build",
"test": "jest src"
},
"keywords": [
"redux",
"graphql",
"react"
],
"author": "Christoph Weise-Onnen",
"repository": {
"type": "git",
"url": "git+https://github.com/cweise/redux-graphql.git"
},
"homepage": "https://github.com/cweise/redux-graphql#readme",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"babel-jest": "^25.1.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"jest": "^25.1.0",
"lodash": "^4.17.15"
},
"peerDependencies": {
"graphql": ">= 14.6.0",
"graphql-tag": ">= 2.10.3"
},
"dependencies": {
"jsum": "^0.1.4"
}
}