-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.22 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
{
"name": "apollo-cache-instorage",
"version": "0.3.0",
"description": "Apollo Cache implementation that facilitates locally storing resources",
"author": "Lucas Constantino Silva <lucasconstantinosilva@gmail.com>",
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"scripts": {
"compile": "babel src -d lib",
"lint": "eslint src",
"test": "jest",
"test:watch": "yarn test --watch --collectCoverage=no",
"codecov": "codecov",
"prepublish": "npm test && npm run lint && npm run compile",
"watch": "nodemon --watch src --exec \"yarn compile\""
},
"dependencies": {
"apollo-cache-inmemory": "^1.6.5",
"apollo-utilities": "^1.3.3",
"traverse": "^0.6.6"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.0.0",
"apollo-client": "^2.6.8",
"apollo-link": "^1.2.13",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-rewire": "^1.2.0",
"babel-polyfill": "^6.26.0",
"codecov": "^3.6.1",
"eslint": "^6.5.1",
"eslint-config-taller": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-standard": "^4.0.1",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.0",
"jest": "^24.9.0",
"localStorage": "^1.0.4",
"nodemon": "^1.19.3"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"moduleNameMapper": {
"^apollo-cache-instorage(.*)$": "<rootDir>/src$1"
},
"setupFiles": [
"babel-polyfill"
]
},
"keywords": [
"graphql",
"apollo link",
"apollo",
"local",
"cache",
"storage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TallerWebSolutions/apollo-cache-instorage.git"
},
"bugs": {
"url": "https://github.com/TallerWebSolutions/apollo-cache-instorage/issues"
},
"homepage": "https://github.com/TallerWebSolutions/apollo-cache-instorage#readme",
"resolutions": {
"js-yaml": "^3.13.x",
"lodash": "^4.17.13",
"set-value": "^2.0.1",
"mixin-deep": "1.3.2"
}
}