UNPKG

1.11 kBJSONView Raw
1{
2 "name": "eslint-plugin-graphql",
3 "version": "1.4.0",
4 "description": "GraphQL ESLint plugin.",
5 "author": "Sashko Stubailo",
6 "main": "lib/index.js",
7 "scripts": {
8 "test": "mocha test/index.js",
9 "prepublish": "babel ./src --ignore test --out-dir ./lib",
10 "pretest": "node test/updateSchemaJson.js"
11 },
12 "homepage": "https://github.com/apollostack/eslint-plugin-graphql",
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/apollostack/eslint-plugin-graphql.git"
16 },
17 "devDependencies": {
18 "babel": "^6.5.2",
19 "babel-cli": "^6.7.7",
20 "babel-core": "^6.7.7",
21 "babel-eslint": "^7.2.3",
22 "babel-plugin-transform-runtime": "^6.23.0",
23 "babel-preset-es2015": "^6.6.0",
24 "babel-preset-stage-0": "^6.5.0",
25 "eslint": "^4.1.1",
26 "graphql": "^0.11.0",
27 "graphql-tools": "^2.0.0",
28 "mocha": "^3.4.2"
29 },
30 "babel": {
31 "presets": [
32 "es2015",
33 "stage-0"
34 ]
35 },
36 "license": "MIT",
37 "dependencies": {
38 "graphql-config": "^1.0.7",
39 "lodash": "^4.11.1"
40 },
41 "peerDependencies": {
42 "graphql": "^0.10.1 || ^0.11.0"
43 }
44}