-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 998 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "portier",
"version": "0.7.0",
"description": "Portier client for Node.js",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/portier/portier-node.git"
},
"keywords": [
"portier",
"auth"
],
"author": "Stéphan Kochen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/portier/portier-node/issues"
},
"homepage": "https://github.com/portier/portier-node#readme",
"files": [
"README.md",
"LICENSE",
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "tape test.js",
"prepare": "tsc",
"fmt": "prettier --write '*.{js,json,md}' 'src/**/*.ts'"
},
"dependencies": {
"jwa": "^2.0.0",
"jwk-to-pem": "^2.0.1"
},
"devDependencies": {
"@redis/client": "^1.5.11",
"@types/node": "18",
"prettier": "3.1.0",
"tape": "^5.2.2",
"typescript": "5.3.2"
}
}