forked from passageidentity/passage-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.86 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.86 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"version": "1.10.1",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/base-64": "^1.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/jwk-to-pem": "^2.0.1",
"@types/node": "^16.9.0",
"@types/pem": "^1.9.6",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-jest": "^27.2.0",
"beachball": "^2.20.0",
"dotenv": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"husky": "^7.0.4",
"jest": "^27.2.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"name": "@passageidentity/passage-node",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"lint": "eslint 'src/**/*.ts?(x)' --fix",
"lint:ci": "eslint 'src/**/*.ts?(x)'",
"format": "pretty-quick --staged",
"prepare": "husky install",
"dev": "ts-node-dev --respawn testServer.ts",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run tsc",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"change": "beachball change",
"publish": "beachball publish -y -n",
"beachball-check": "beachball check"
},
"keywords": [
"passage",
"identity",
"passageidentity",
"authentication",
"login"
],
"author": "Passage Identity",
"license": "MIT",
"description": "",
"dependencies": {
"axios": "^0.21.4",
"base-64": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.5"
},
"publishConfig": {
"access": "public"
}
}