This repository has been archived by the owner on Jul 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
69 lines (69 loc) · 1.96 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
{
"name": "apollo-cache-redux",
"version": "0.1.2",
"description": "Redux cache for Apollo Client 2.x",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/rportugal/apollo-cache-redux.git"
},
"author": "Ricardo Portugal <[email protected]>",
"contributors": [
"Ricardo Portugal <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rportugal/apollo-cache-redux/issues"
},
"homepage": "https://github.com/rportugal/apollo-cache-redux#readme",
"scripts": {
"coverage": "jest --coverage",
"test": "jest",
"lint": "tslint --type-check -p tsconfig.json src/*.ts",
"prebuild": "npm run clean",
"build": "tsc -p .",
"watch": "tsc -w -p .",
"clean": "rimraf coverage/* && rimraf lib/*",
"prepublishOnly": "npm run build",
"build:browser": "browserify ./lib/index.js --i apollo-cache-core --i apollo-utilities -o=./lib/bundle.js && npm run minify:browser",
"minify:browser": "uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js",
"filesize": "npm run build:browser"
},
"dependencies": {
"apollo-cache": "1.1.17",
"apollo-cache-inmemory": "1.2.10"
},
"devDependencies": {
"@types/graphql": "0.9.4",
"@types/jest": "21.1.2",
"@types/lodash": "^4.14.85",
"browserify": "14.5.0",
"graphql": "0.13.2",
"graphql-tag": "2.9.2",
"jest": "^23.6.0",
"lodash": "^4.17.11",
"redux": "^4.0.0",
"rimraf": "2.6.2",
"ts-jest": "20.0.14",
"tslint": "5.8.0",
"typescript": "2.5.2",
"uglifyjs": "2.4.11"
},
"peerDependencies": {
"redux": "3.x || 4.x"
},
"jest": {
"testEnvironment": "node",
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}