123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "name": "apollo-utilities",
- "version": "1.3.4",
- "description": "Utilities for working with GraphQL ASTs",
- "author": "James Baxley <james@meteor.com>",
- "contributors": [
- "James Baxley <james@meteor.com>",
- "Jonas Helfer <jonas@helfer.email>",
- "Sashko Stubailo <sashko@stubailo.com>",
- "James Burgess <jamesmillerburgess@gmail.com>"
- ],
- "license": "MIT",
- "main": "./lib/bundle.cjs.js",
- "module": "./lib/bundle.esm.js",
- "typings": "./lib/index.d.ts",
- "sideEffects": false,
- "repository": {
- "type": "git",
- "url": "git+https://github.com/apollographql/apollo-client.git"
- },
- "bugs": {
- "url": "https://github.com/apollographql/apollo-client/issues"
- },
- "homepage": "https://github.com/apollographql/apollo-client#readme",
- "scripts": {
- "prepare": "npm run lint && npm run build",
- "test": "tsc -p tsconfig.json --noEmit && jest",
- "coverage": "jest --coverage",
- "lint": "tslint -c \"../../config/tslint.json\" -p tsconfig.json src/*.ts",
- "prebuild": "npm run clean",
- "build": "tsc -b .",
- "postbuild": "npm run bundle",
- "bundle": "npx rollup -c rollup.config.js",
- "watch": "../../node_modules/tsc-watch/index.js --onSuccess \"npm run postbuild\"",
- "clean": "rm -rf coverage/* lib/*",
- "prepublishOnly": "npm run clean && npm run build"
- },
- "peerDependencies": {
- "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
- },
- "dependencies": {
- "@wry/equality": "^0.1.2",
- "fast-json-stable-stringify": "^2.0.0",
- "ts-invariant": "^0.4.0",
- "tslib": "^1.10.0"
- },
- "gitHead": "d22394c419ff7d678afb5e7d4cd1df16ed803ead"
- }
|