-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
{
"name": "nexus-plugin-security",
"version": "0.1.3-next.5",
"license": "MIT",
"main": "dist/index.js",
"author": {
"email": "etienne.fachaux@skyloud.fr",
"name": "Etienne Fachaux",
"url": "https://github.com/liogate"
},
"bugs": {
"url": "https://github.com/liogate/nexus-plugin-security/issues"
},
"module": "dist/nexus-plugin-security.esm.js",
"description": "Nexus security plugin",
"homepage": "https://github.com/liogate/nexus-plugin-security",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"build:doc": "doctoc README.md --notitle",
"build:ts": "tsc",
"build": "npm run build:ts && npm run build:doc",
"test": "jest",
"publish:stable": "dripip stable",
"publish:preview": "dripip preview",
"publish:pr": "dripip pr",
"prepack": "npm run build:ts"
},
"keywords": [
"graphql",
"nexus",
"security",
"auth",
"authorization",
"server",
"authentication"
],
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"devDependencies": {
"@types/jsonwebtoken": "^8.3.9",
"jest": "^25.5.4",
"prettier": "2.0.5"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"nexus": "^0.21.0"
}
}