-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "apollo-cache-invalidation",
"version": "0.0.3",
"description": "Experimental caching tools for Apollo.",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -Rf lib",
"build": "npm run clean && babel src -d lib",
"lint": "eslint src tests",
"test": "jest",
"prepush": "npm run lint && npm run test",
"prepublish": "npm run lint && npm run test && npm run build"
},
"keywords": [
"apollo",
"graphql",
"cache",
"apollo-client"
],
"author": "Lucas Constantino Silva <[email protected]>",
"license": "MIT",
"devDependencies": {
"apollo-cache-inmemory": "^1.2.10",
"apollo-client": "^2.4.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-preset-taller": "^0.1.1",
"babel-register": "^6.18.0",
"eslint": "^3.10.2",
"eslint-config-taller": "^1.0.4",
"graphql": "^14.0.2",
"graphql-tag": "^2.9.2",
"husky": "^0.13.2",
"jest": "^19.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasconstantino/apollo-cache-invalidation.git"
},
"bugs": {
"url": "https://github.com/lucasconstantino/apollo-cache-invalidation/issues"
},
"homepage": "https://github.com/lucasconstantino/apollo-cache-invalidation#readme",
"dependencies": {
"object-path": "^0.11.4",
"traverse": "^0.6.6"
},
"jest": {
"moduleNameMapper": {
"apollo-cache-invalidation": "<rootDir>/src"
}
}
}