-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "mercurius-auth",
"version": "6.0.0",
"description": "Mercurius Auth Plugin adds configurable Authentication and Authorization 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 && npm run lint:typescript",
"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/auth.git"
},
"author": "Jonny Green <[email protected]>",
"contributors": [
{
"name": "Matteo Collina",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mercurius-js/auth/issues"
},
"homepage": "https://github.com/mercurius-js/auth",
"devDependencies": {
"@mercuriusjs/federation": "^4.0.0",
"@mercuriusjs/gateway": "^4.0.0",
"@sinonjs/fake-timers": "^10.0.2",
"@types/node": "^20.1.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"autocannon": "^7.9.0",
"concurrently": "^8.0.1",
"fastify": "^5.0.0",
"mercurius": "^15.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.0",
"tsd": "^0.28.0",
"typescript": "^5.0.2",
"wait-on": "^7.0.1"
},
"dependencies": {
"@fastify/error": "^4.0.0",
"fastify-plugin": "^5.0.0",
"graphql": "^16.2.0"
},
"tsd": {
"directory": "./test/types"
}
}