-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "validate-graphql",
"version": "1.0.9",
"description": "NPM module that provides an efficient and elegant way to validate your GraphQL queries and mutations",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ganeshcse2991/validate-graphql.git"
},
"scripts": {
"build": "babel src --out-dir lib",
"prepare": "npm run build"
},
"keywords": [
"graphql",
"validation",
"graphql-validate",
"validate",
"validate-graphql",
"validator",
"validators",
"graphql-validation",
"validating-graphql"
],
"author": "Ganesh Ravi Shankar <ganeshcsc2991@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ganeshcse2991/validate-graphql/issues"
},
"homepage": "https://github.com/ganeshcse2991/validate-graphql#readme",
"dependencies": {
"@babel/runtime": "^7.4.5"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-es2015": "^7.0.0-beta.53",
"babel-eslint": "^10.0.1",
"babel-preset-minify": "^0.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3"
}
}