forked from confuser/graphql-constraint-directive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.23 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
47
48
49
50
51
52
53
54
55
{
"name": "graphql-constraint-directive",
"version": "2.3.0",
"description": "Validate GraphQL fields",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "standard && nyc --reporter=html --reporter=text --reporter=lcov mocha test/**/*.test.js"
},
"author": "James Mortemore (jamesmortemore@gmail.com)",
"license": "ISC",
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:confuser/graphql-constraint-directive.git"
},
"bugs": {
"url": "https://github.com/confuser/graphql-constraint-directive/issues"
},
"keywords": [
"graphql",
"validate",
"validation",
"validator",
"directive",
"constraint"
],
"devDependencies": {
"apollo-server-express": "^2.14.2",
"coveralls": "^3.1.0",
"express": "^4.16.3",
"graphql": "^15.0.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"standard": "^11.0.1",
"supertest": "^3.1.0"
},
"dependencies": {
"@graphql-tools/schema": "^6.0.9",
"@graphql-tools/utils": "^6.0.9",
"validator": "^13.6.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0"
},
"standard": {
"globals": [
"describe",
"it",
"before"
]
}
}