-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 1009 Bytes
/
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
{
"name": "@koopjs/auth-direct-file",
"version": "3.0.0",
"description": "Module for implementing a direct authentication pattern with file-based user-store in Koop",
"main": "src/index.js",
"scripts": {
"test": "jest src/*.spec.js",
"lint": "eslint \"src/**/*.js\"",
"lint:ci": "eslint \"src/**/*.js\" --rule linebreak-style:0 ",
"lint:fix": "eslint \"src/**/*.js\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koopjs/koop-auth-direct-file.git"
},
"author": "Rich Gwozdz",
"license": "Apache-2.0",
"devDependencies": {
"@babel/eslint-parser": "^7.22.10",
"eslint": "^8.47.0",
"jest": "^29.6.3",
"prettier": "^3.0.2"
},
"bugs": {
"url": "https://github.com/koopjs/koop-auth-direct-file/issues"
},
"homepage": "https://github.com/koopjs/koop-auth-direct-file#readme",
"dependencies": {
"fs-extra": "^11.1.1",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1"
},
"coverageDirectory": "./coverage"
}