apollo-server/packages/apollo-server-module-operation-store/package.json
Laurin Quast df51fd90da Setup prettier (#724)
* Setup prettier and precommit hooks

* Format code with prettier

* Use husky because it works...

* Move prettier config to .prettierrc file

* Implement fixing markdown file formatting when running lint-fix script

* Format markdown files

* Add .json file formatting

* Fixes json file formatting

* Add pretteir linting step

* Remove tslint

* Use gitignore for prettier

* Fix linting errors

* Ignore submodule folder
2018-01-08 15:08:01 -08:00

32 lines
945 B
JSON

{
"name": "apollo-server-module-operation-store",
"version": "1.3.1",
"description": "Persisted operation store module for Apollo GraphQL Servers",
"main": "dist/index.js",
"scripts": {
"compile": "tsc",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url":
"https://github.com/apollographql/apollo-server/tree/master/packages/apollo-server-module-operation-store"
},
"keywords": ["GraphQL", "Apollo", "Operation Store", "Javascript"],
"author": "Jonas Helfer <jonas@helfer.email>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollographql/apollo-server/issues"
},
"homepage": "https://github.com/apollographql/apollo-server#readme",
"devDependencies": {
"@types/graphql": "0.11.7"
},
"peerDependencies": {
"graphql": "^0.9.0 || ^0.10.1 || ^0.11.0"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
}
}