forked from WooodHead/apollo-link-watched-mutation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "@kiwee/apollo-link-watched-mutation",
"version": "1.0.0",
"description": "An interface for providing default updates for mutation - query pairings",
"keywords": [
"apollo",
"link",
"graphql",
"redux"
],
"homepage": "https://github.com/KiweeEu/apollo-link-watched-mutation#readme",
"bugs": "https://github.com/KiweeEu/apollo-link-watched-mutation/issues",
"license": "MIT",
"author": {
"name": "John Haytko",
"email": "johnhaytko@gmail.com"
},
"contributors": [
{
"name": "Serhii Korzh",
"email": "serhii.korzh@kiwee.eu",
"url": "https://kiwee.eu"
}
],
"files": [
"lib"
],
"main": "./lib/main/index.js",
"module": "./lib/module/index.js",
"repository": "github:KiweeEu/apollo-link-watched-mutation",
"scripts": {
"prepublishOnly": "npm test && npm run clean && npm run build",
"clean": "rimraf lib/*",
"build:main": "babel src -d lib/main --config-file ./babel.main.json",
"build:module": "babel src -d lib/module --config-file ./babel.module.json",
"build": "npm run build:main && npm run build:module",
"test": "jest"
},
"dependencies": {
"@apollo/client": "^3.0.0",
"@babel/runtime": "^7.21.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.5.0",
"graphql": "^16.6.0",
"jest": "^29.5.0",
"rimraf": "^4.4.0"
},
"peerDependencies": {
"@apollo/client": "^3.0.0",
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"browserslist": "> 1%",
"jest": {
"testRegex": "(/__tests__/.*(test))\\.js$"
}
}