forked from mercurius-js/validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.9 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.9 KB
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
66
67
68
69
{
"name": "mercurius-validation",
"version": "2.0.2",
"description": "Mercurius Validation Plugin adds configurable Validation support to Mercurius.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"unit": "tap --100 test/*.js",
"cov": "tap --coverage-report=html -J test/*.js",
"lint": "npm run lint:standard",
"lint:standard": "standard | snazzy",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin index.d.ts test/types/*.ts | snazzy",
"typescript": "tsd",
"test": "npm run lint && npm run unit && npm run typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercurius-js/validation.git"
},
"author": "Jonny Green <hello@jonnydgreen.com>",
"contributors": [
{
"name": "Matteo Collina",
"email": "hello@matteocollina.com"
},
{
"name": "Simone Sanfratello",
"email": "simone@braceslab.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mercurius-js/validation/issues"
},
"homepage": "https://github.com/mercurius-js/validation",
"devDependencies": {
"@sinonjs/fake-timers": "^9.0.0",
"@types/node": "^18.0.0",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"autocannon": "^7.0.5",
"concurrently": "^7.0.0",
"fastify": "^3.0.2",
"mercurius": "^9.1.0",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.21.0",
"typescript": "^4.0.3",
"wait-on": "^6.0.0"
},
"dependencies": {
"@fastify/error": "^3.0.0",
"ajv": "^8.6.2",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"fastify-plugin": "^3.0.0",
"graphql": "^16.2.0"
},
"tsd": {
"directory": "./test/types"
},
"directories": {
"lib": "lib",
"test": "test"
}
}