1{
2  "name": "graphql-anywhere",
3  "version": "4.1.16",
4  "description": "Run GraphQL queries with no schema and just one resolver",
5  "main": "./lib/bundle.umd.js",
6  "module": "./lib/index.js",
7  "jsnext:main": "./lib/index.js",
8  "typings": "./lib/index.d.ts",
9  "sideEffects": false,
10  "scripts": {
11    "coverage": "jest --coverage",
12    "test": "jest",
13    "build": "tsc",
14    "postbuild": "npm run bundle",
15    "bundle": "rollup -c rollup.config.js && rollup -c rollup.async.config.js",
16    "watch": "tsc -w",
17    "prepublishOnly": "npm run build",
18    "lint": "tslint --type-check -p tsconfig.json src/*.ts",
19    "build:browser": "browserify ./lib/bundle.umd.js -o=./lib/bundle.js --i apollo-utilities && npm run minify:browser",
20    "minify:browser": "uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js",
21    "filesize": "npm run build:browser"
22  },
23  "repository": {
24    "type": "git",
25    "url": "apollographql/graphql-anywhere"
26  },
27  "keywords": [
28    "ecmascript",
29    "es2015",
30    "jsnext",
31    "javascript",
32    "relay",
33    "npm",
34    "react"
35  ],
36  "author": "Sashko Stubailo <sashko@stubailo.com>",
37  "contributors": [
38    "James Burgess <jamesmillerburgess@gmail.com>"
39  ],
40  "license": "MIT",
41  "dependencies": {},
42  "devDependencies": {},
43  "jest": {
44    "transform": {
45      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
46    },
47    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
48    "moduleFileExtensions": [
49      "ts",
50      "tsx",
51      "js",
52      "json"
53    ],
54    "testURL": "http://localhost"
55  },
56  "cleaned": true
57}