UNPKG

1.5 kBJSONView Raw
1{
2 "name": "graphql-anywhere",
3 "version": "4.2.8",
4 "description": "Run GraphQL queries with no schema and just one resolver",
5 "main": "./lib/bundle.cjs.js",
6 "module": "./lib/bundle.esm.js",
7 "typings": "./lib/index.d.ts",
8 "sideEffects": false,
9 "scripts": {
10 "prepare": "npm run lint && npm run build",
11 "coverage": "jest --coverage",
12 "test": "tsc -p tsconfig.json --noEmit && jest",
13 "build": "tsc -b .",
14 "postbuild": "npm run bundle",
15 "bundle": "npx rollup -c rollup.config.js",
16 "watch": "../../node_modules/tsc-watch/index.js --onSuccess \"npm run postbuild\"",
17 "prepublishOnly": "npm run build",
18 "lint": "tslint -c \"../../config/tslint.json\" -p tsconfig.json src/*.ts",
19 "clean": "rm -rf coverage/* lib/*"
20 },
21 "repository": {
22 "type": "git",
23 "url": "git+https://github.com/apollographql/apollo-client.git"
24 },
25 "bugs": {
26 "url": "https://github.com/apollographql/apollo-client/issues"
27 },
28 "homepage": "https://github.com/apollographql/apollo-client/tree/master/packages/graphql-anywhere",
29 "keywords": [
30 "ecmascript",
31 "es2015",
32 "jsnext",
33 "javascript",
34 "relay",
35 "npm",
36 "react"
37 ],
38 "author": "Sashko Stubailo <sashko@stubailo.com>",
39 "contributors": [
40 "James Burgess <jamesmillerburgess@gmail.com>"
41 ],
42 "license": "MIT",
43 "dependencies": {
44 "apollo-utilities": "^1.3.4",
45 "ts-invariant": "^0.3.2",
46 "tslib": "^2.4.0"
47 },
48 "peerDependencies": {
49 "graphql": ">= 0.11.0"
50 }
51}