apollo-server/packages/graphql-extensions/package.json
2018-07-16 16:15:10 -07:00

40 lines
1.1 KiB
JSON

{
"name": "graphql-extensions",
"version": "0.1.0-rc.2",
"description": "Add extensions to GraphQL servers",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"compile": "tsc",
"watch": "tsc -w",
"prepublish": "npm run clean && npm run compile",
"lint": "prettier -l 'src/**/*.ts' && tslint -p tsconfig.json 'src/**/*.ts'",
"lint-fix": "prettier --write 'src/**/*.ts' && tslint --fix -p tsconfig.json 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "apollographql/graphql-extensions"
},
"author": "Martijn Walraven <martijn@martijnwalraven.com>",
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"dependencies": {
"apollo-server-env": "2.0.0-rc.8"
},
"peerDependencies": {
"graphql": "0.10.x - 0.13.x"
},
"devDependencies": {
"@types/graphql": "0.13.3",
"@types/jest": "23.1.6",
"@types/node": "10.5.2",
"graphql": "0.13.2",
"jest": "23.4.1",
"jest-matcher-utils": "23.2.0",
"ts-jest": "22.4.6",
"tslint": "5.10.0"
}
}