github-pages-deploy-action/node_modules/graphql-config/package.json

62 lines
1.6 KiB
JSON
Raw Normal View History

2020-03-07 11:45:40 +08:00
{
2020-03-31 20:57:48 +08:00
"name": "graphql-config",
"version": "2.2.1",
2020-03-22 05:13:25 +08:00
"description": "The easiest way to configure your development environment with your GraphQL schema (supported by most tools, editors & IDEs)",
"engines": {
"node": ">= 6.0.0"
2020-03-07 11:45:40 +08:00
},
2020-03-31 20:57:48 +08:00
"main": "lib/index.js",
"types": "lib/index.d.ts",
2020-03-22 05:13:25 +08:00
"files": [
"LICENSE",
"README.md",
"lib/"
],
2020-03-31 20:57:48 +08:00
"scripts": {
"prepublish": "npm run build",
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"copy-test-assets": "cpx \"src/**/{.graphqlconfig*,*.graphql,*.json}\" lib",
"test-only": "npm run build && npm run copy-test-assets && ava --verbose lib/__tests__/**/*.js --serial",
"test": "tslint src/**/*.ts && npm run test-only"
},
"repository": {
"type": "git",
"url": "https://github.com/graphcool/graphql-config.git"
},
2020-03-22 05:13:25 +08:00
"keywords": [
"graphql",
"config",
"relay",
"apollo"
],
2020-03-31 20:57:48 +08:00
"author": "Johannes Schickling <johannes@graph.cool>",
2020-03-22 05:13:25 +08:00
"license": "MIT",
2020-03-31 20:57:48 +08:00
"bugs": {
"url": "https://github.com/graphcool/graphql-config/issues"
2020-03-22 05:13:25 +08:00
},
2020-03-31 20:57:48 +08:00
"homepage": "https://github.com/graphcool/graphql-config#readme",
"devDependencies": {
"@types/graphql": "0.13.3",
"@types/node": "9.4.6",
"@types/node-fetch": "1.6.7",
"ava": "0.25.0",
"cpx": "1.5.0",
"graphql": "14.0.2",
"rimraf": "2.6.2",
"tslint": "5.9.1",
"tslint-config-standard": "7.0.0",
"typescript": "2.7.2"
2020-03-22 05:13:25 +08:00
},
2020-03-31 20:57:48 +08:00
"dependencies": {
"graphql-import": "^0.7.1",
"graphql-request": "^1.5.0",
"js-yaml": "^3.10.0",
"lodash": "^4.17.4",
"minimatch": "^3.0.4"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
}
2020-03-07 11:45:40 +08:00
}