UNPKG

2.18 kBJSONView Raw
1{
2 "name": "apollo-boost",
3 "version": "0.1.21",
4 "description": "The easiest way to get started with Apollo Client",
5 "author": "Peggy Rayzis <peggy@apollographql.com>",
6 "contributors": [
7 "James Baxley <james@apollographql.com>",
8 "Sashko Stubailo <sashko@apollographql.com>",
9 "James Burgess <jamesmillerburgess@gmail.com>"
10 ],
11 "license": "MIT",
12 "main": "./lib/index.umd.js",
13 "module": "./lib/index.js",
14 "jsnext:main": "./lib/index.js",
15 "typings": "./lib/index.d.ts",
16 "sideEffects": false,
17 "repository": {
18 "type": "git",
19 "url": "git+https://github.com/apollographql/apollo-client.git"
20 },
21 "bugs": {
22 "url": "https://github.com/apollographql/apollo-client/issues"
23 },
24 "homepage": "https://github.com/apollographql/apollo-client#readme",
25 "scripts": {
26 "prepare": "npm run lint && npm run build",
27 "test": "jest",
28 "coverage": "jest --coverage",
29 "lint": "tslint -c \"../../config/tslint.json\" -p tsconfig.json src/*.ts",
30 "prebuild": "npm run clean",
31 "build": "tsc -p .",
32 "postbuild": "npm run bundle",
33 "watch": "tsc -w -p .",
34 "clean": "rm -rf coverage/* && rm -rf lib/*",
35 "prepublishOnly": "npm run build",
36 "minify": "../../node_modules/uglify-js/bin/uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.umd.js",
37 "filesize": "npm run minify",
38 "bundle": "../../node_modules/rollup/bin/rollup -c rollup.config.js && ../../node_modules/rollup/bin/rollup -c rollup-bundle.config.js"
39 },
40 "dependencies": {
41 "apollo-cache": "^1.1.20",
42 "apollo-cache-inmemory": "^1.3.10",
43 "apollo-client": "^2.4.6",
44 "apollo-link": "^1.0.6",
45 "apollo-link-error": "^1.0.3",
46 "apollo-link-http": "^1.3.1",
47 "apollo-link-state": "^0.4.0",
48 "graphql-tag": "^2.4.2"
49 },
50 "peerDependencies": {
51 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
52 },
53 "jest": {
54 "transform": {
55 ".(ts|tsx)": "ts-jest"
56 },
57 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
58 "moduleFileExtensions": [
59 "ts",
60 "tsx",
61 "js",
62 "json"
63 ],
64 "testURL": "http://localhost"
65 },
66 "gitHead": "87cecbeea9255b6c3c7f2e4b2a65a27819609335"
67}