-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
65 lines (65 loc) · 2.24 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
56
57
58
59
60
61
62
63
64
65
{
"name": "graphql-constraint-directive",
"version": "5.4.3",
"description": "Validate GraphQL fields",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "standard && nyc --reporter=html --reporter=text --reporter=lcov mocha test/**/testsuite-full.js",
"test-documentation": "standard && nyc --reporter=html --reporter=text --reporter=lcov mocha test/**/testsuite-documentation.js",
"test-schema-wrapper": "standard && nyc --reporter=html --reporter=text --reporter=lcov mocha test/**/testsuite-schema-wrapper.js",
"test-apollo-plugin": "standard && nyc --reporter=html --reporter=text --reporter=lcov mocha test/**/testsuite-apollo-plugin.js",
"test-apollo4-plugin": "standard && nyc --reporter=html --reporter=text --reporter=lcov mocha test/**/testsuite-apollo4-plugin.js",
"test-envelop-plugin": "standard && nyc --reporter=html --reporter=text --reporter=lcov mocha test/**/testsuite-envelop-plugin.js",
"test-typescript": "tsc --project tsconfig.apollo4.json && tsc --project tsconfig.apollo.json",
"test-validation-rule-express-graphql": "standard && nyc --reporter=html --reporter=text --reporter=lcov mocha test/**/testsuite-validation-rule-express-graphql.js"
},
"author": "James Mortemore ([email protected])",
"license": "ISC",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]: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": "4.9.5",
"@graphql-yoga/node": "2.13.13",
"apollo-server-express": "3.13.0",
"coveralls": "3.1.1",
"express": "4.21.1",
"graphql": "16.6.0",
"mocha": "10.8.2",
"nyc": "17.1.0",
"standard": "16.0.4",
"supertest": "7.0.0",
"typescript": "^5.5.3"
},
"dependencies": {
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/utils": "^10.0.0",
"validator": "^13.6.0"
},
"peerDependencies": {
"graphql": ">=14.0.0"
},
"standard": {
"globals": [
"describe",
"it",
"before"
]
}
}