-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "auth-tokens",
"version": "0.1.9",
"description": "Auth library for Node.js applications based on access and refresh tokens approach",
"keywords": [
"auth token",
"access token",
"refresh token",
"csrf",
"jwt"
],
"author": "Leonid Vinogradov <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10.13.0 < 13 || >=13.7.0"
},
"main": "src/index.js",
"scripts": {
"lint": "prettier .",
"lint:ci": "prettier . --check",
"lint:fix": "prettier . --write",
"test": "tap",
"codecov": "tap --coverage-report=text-lcov | codecov",
"example": "node-dev ./example/server.js"
},
"dependencies": {
"jose": "^2.0.6"
},
"devDependencies": {
"codecov": "^3.7.0",
"cookies": "^0.8.0",
"node-dev": "^8.0.0",
"prettier": "^3.0.3",
"rewiremock": "^3.14.5",
"tap": "^18.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leon-win/node-auth-tokens.git"
},
"bugs": {
"url": "https://github.com/leon-win/node-auth-tokens/issues"
},
"homepage": "https://github.com/leon-win/node-auth-tokens",
"tap": {
"comments": true,
"coverage-report": [
"text",
"html"
]
}
}