2020-03-07 11:45:40 +08:00
|
|
|
{
|
2020-03-31 20:57:48 +08:00
|
|
|
"name": "graphql-request",
|
|
|
|
"version": "1.8.2",
|
|
|
|
"main": "dist/src/index.js",
|
|
|
|
"typings": "./dist/src/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist"
|
2020-03-07 11:45:40 +08:00
|
|
|
],
|
|
|
|
"bundlesize": [
|
|
|
|
{
|
|
|
|
"path": "./dist/src/index.js",
|
|
|
|
"maxSize": "15 kB"
|
|
|
|
}
|
|
|
|
],
|
2020-03-31 20:57:48 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/graphcool/graphql-request.git"
|
2020-03-22 05:13:25 +08:00
|
|
|
},
|
2020-03-07 11:45:40 +08:00
|
|
|
"keywords": [
|
|
|
|
"graphql",
|
|
|
|
"request",
|
|
|
|
"fetch",
|
|
|
|
"graphql-client",
|
|
|
|
"apollo"
|
|
|
|
],
|
2020-03-31 20:57:48 +08:00
|
|
|
"author": "Johannes Schickling <johannes@graph.cool>",
|
2020-03-07 11:45:40 +08:00
|
|
|
"license": "MIT",
|
2020-03-31 20:57:48 +08:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/graphcool/graphql-request/issues"
|
2020-03-07 11:45:40 +08:00
|
|
|
},
|
2020-03-31 20:57:48 +08:00
|
|
|
"homepage": "https://github.com/graphcool/graphql-request",
|
2020-03-07 11:45:40 +08:00
|
|
|
"scripts": {
|
2020-03-31 20:57:48 +08:00
|
|
|
"prepublish": "npm run build",
|
2020-03-07 11:45:40 +08:00
|
|
|
"build": "rm -rf dist && tsc -d",
|
|
|
|
"lint": "tslint --type-check --project tsconfig.json {src,test}/**/*.ts",
|
2020-03-31 20:57:48 +08:00
|
|
|
"test": "npm run lint && npm run build && ava --serial && npm run size",
|
|
|
|
"size": "bundlesize"
|
2020-03-07 11:45:40 +08:00
|
|
|
},
|
2020-03-31 20:57:48 +08:00
|
|
|
"devDependencies": {
|
|
|
|
"@types/fetch-mock": "5.12.2",
|
|
|
|
"@types/node": "8.5.5",
|
|
|
|
"ava": "0.25.0",
|
|
|
|
"bundlesize": "0.17.0",
|
|
|
|
"fetch-mock": "5.13.1",
|
|
|
|
"tslint": "5.9.1",
|
|
|
|
"tslint-config-standard": "7.0.0",
|
|
|
|
"typescript": "2.7.2"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"cross-fetch": "2.2.2"
|
|
|
|
}
|
2020-03-07 11:45:40 +08:00
|
|
|
}
|