-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "@keratin/authn-node",
"version": "0.2.2",
"description": "NodeJS client library for Keratin AuthN",
"main": "dist/index.js",
"module": "dist/index.module.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:keratin/authn-node.git",
"author": "Lance Ivy <[email protected]>",
"license": "LGPL-3.0-only",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/node-rsa": "^1.1.1",
"jest": "^27.2.5",
"node-rsa": "^1.1.1",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"axios": "^0.21.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.12.1"
},
"scripts": {
"build": "yarn tsc && rollup -c && cp lib/*.d.ts dist",
"format": "prettier -w src/*.ts",
"lint:format": "prettier -c src/*.ts",
"problems": "yarn tsc --noEmit && yarn lint:format",
"release": "yarn problems && yarn test && yarn build && git push && yarn publish --access public && git push --tags",
"test": "jest"
}
}