mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
|
{
|
||
|
"name": "graphql-config",
|
||
|
"version": "2.2.1",
|
||
|
"description": "The easiest way to configure your development environment with your GraphQL schema (supported by most tools, editors & IDEs)",
|
||
|
"engines": {
|
||
|
"node": ">= 6.0.0"
|
||
|
},
|
||
|
"main": "lib/index.js",
|
||
|
"types": "lib/index.d.ts",
|
||
|
"files": [
|
||
|
"LICENSE",
|
||
|
"README.md",
|
||
|
"lib/"
|
||
|
],
|
||
|
"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"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"graphql",
|
||
|
"config",
|
||
|
"relay",
|
||
|
"apollo"
|
||
|
],
|
||
|
"author": "Johannes Schickling <johannes@graph.cool>",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/graphcool/graphql-config/issues"
|
||
|
},
|
||
|
"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"
|
||
|
},
|
||
|
"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"
|
||
|
}
|
||
|
}
|