-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "@cryptr/passport-cryptr",
"version": "1.1.2",
"description": "Cryptr authentication strategy for Passport.js",
"main": "./lib",
"scripts": {
"start:dev": "node dev/app.js",
"make-badges": "istanbul-badges-readme",
"test:coverage": "jest --coverage",
"test": "jest --config jest.config.json && npm run make-badges",
"test:without-coverage": "jest --config jest.config.json",
"test:watch": "jest --config jest.config.json --watch && npm run make-badges",
"unpublish": "npm unpublish ${npm_package_name}@{npm_package_version} --force",
"publish-force": "npm run unpublish && ls && npm run publish:lib",
"publish": "npm run test:without-coverage && ls && npm run publish:lib",
"publish:lib": "npm publish"
},
"keywords": [
"cryptr",
"passport",
"passportjs",
"strategy",
"authentication",
"gateway",
"sso",
"express"
],
"author": "Cryptr <thibaud@cryptr.co> (https://www.cryptr.co)",
"license": "MIT",
"dependencies": {
"@cryptr/cryptr-jwt-verifier": "^1.0.1",
"passport-strategy": "1.x.x"
},
"devDependencies": {
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "^4.19.2",
"istanbul-badges-readme": "^1.8.5",
"jest": "^29.7.0",
"ky": "^1.2.2",
"passport": "^0.7.0",
"typescript": "^5.3.3"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptr-auth/passport-cryptr.git"
},
"bugs": {
"url": "https://github.com/cryptr-auth/passport-cryptr/issues"
},
"homepage": "https://github.com/cryptr-auth/passport-cryptr#readme"
}