-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "@aliencreations/node-authenticator",
"version": "1.1.1",
"description": "Authenticator for Alien Creations node apps.",
"main": "index.js",
"dependencies": {
"@aliencreations/node-error": "*",
"atob": "^2.1.2",
"axios": "^0.18.0",
"btoa": "^1.2.1",
"cuid": "^1.3.8",
"dotenv-safe": "^4.0.3",
"flat-cache": "^2.0.1",
"jsonwebtoken": "8.x.x",
"ramda": "^0.29.0"
},
"devDependencies": {
"@aliencreations/eslint-config": "^1.x.x",
"eslint": "^6.8.0",
"eslint-loader": "^2.1.2",
"jasmine": "2.4.1",
"jasmine-reporters": "^2.2.1",
"nyc": "^14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aliencreations/node-authenticator.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"test": "bash ./run/env/test/run.sh",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"keywords": [
"authenticator",
"jwt"
],
"author": "Sean Cannon",
"bugs": {
"url": "https://github.com/aliencreations/node-authenticator/issues"
},
"homepage": "https://github.com/aliencreations/node-authenticator",
"engines": {
"node": "^14.21.3",
"npm": "^6.14.6"
}
}