UNPKG

2.05 kBJSONView Raw
1{
2 "name": "apollo-link-schema",
3 "version": "1.2.5",
4 "description": "Use a GraphQL Schema to request data",
5 "author": "Tomas Trescak <tomi.trescak@gmail.com>",
6 "contributors": [
7 "Evans Hauser <evanshauser@gmail.com>",
8 "James Baxley <james@meteor.com>",
9 "Jonas Helfer <jonas@helfer.email>",
10 "jon wong <j@jnwng.com>",
11 "Sashko Stubailo <sashko@stubailo.com>",
12 "Zephraph <zephraph@gmail.com>"
13 ],
14 "license": "MIT",
15 "main": "./lib/index.js",
16 "module": "./lib/bundle.esm.js",
17 "typings": "./lib/index.d.ts",
18 "sideEffects": false,
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/apollographql/apollo-link.git"
22 },
23 "bugs": {
24 "url": "https://github.com/apollographql/apollo-link/issues"
25 },
26 "homepage": "https://github.com/apollographql/apollo-link#readme",
27 "scripts": {
28 "build": "tsc && rollup -c",
29 "clean": "rimraf lib/* && rimraf coverage/*",
30 "coverage": "jest --coverage",
31 "filesize": "../../scripts/minify",
32 "lint": "tslint -c \"../../tslint.json\" -p tsconfig.json -c ../../tslint.json src/*.ts",
33 "prebuild": "npm run clean",
34 "prepare": "npm run build",
35 "test": "npm run lint && jest",
36 "watch": "tsc -w -p . & rollup -c -w"
37 },
38 "dependencies": {
39 "apollo-link": "^1.2.14",
40 "tslib": "^1.9.3"
41 },
42 "peerDependencies": {
43 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
44 },
45 "devDependencies": {
46 "@types/graphql": "14.2.3",
47 "@types/jest": "24.9.0",
48 "graphql": "15.0.0",
49 "graphql-tag": "2.10.1",
50 "graphql-tools": "4.0.7",
51 "jest": "24.9.0",
52 "rimraf": "2.7.1",
53 "rollup": "1.29.1",
54 "ts-jest": "22.4.6",
55 "tslint": "5.20.1",
56 "typescript": "3.0.3"
57 },
58 "jest": {
59 "transform": {
60 ".(ts|tsx)": "ts-jest"
61 },
62 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
63 "moduleFileExtensions": [
64 "ts",
65 "tsx",
66 "js",
67 "json"
68 ],
69 "testURL": "http://localhost"
70 },
71 "gitHead": "1012934b4fd9ab436c4fdcd5e9b1bb1e4c1b0d98"
72}