-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.18 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.18 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@frontegg/client",
"version": "2.0.16",
"description": "Frontegg Javascript Library for backend node servers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"docs/CHANGELOG.md",
"LICENSE.md",
"README.md",
"audit-ci.jsonc"
],
"scripts": {
"build": "rm -rf dist && tsc",
"build:watch": "rm -rf dist && tsc --watch",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"test": "npm run build && jest",
"test:coverage": "npm test -- --coverage",
"test:watch": "npm run build && jest --watch",
"dev": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git@github.com:frontegg/nodejs-sdk.git"
},
"author": "Frontegg",
"license": "ISC",
"homepage": "https://github.com/frontegg/nodejs-sdk",
"dependencies": {
"@frontegg/entitlements-javascript-commons": "^1.1.3",
"axios": "^1.7.4",
"jsonwebtoken": "^9.0.2",
"node-cache": "^5.1.2",
"winston": "^3.18.3"
},
"peerDependencies": {
"ioredis": "^5.0.0",
"redis": "^4.0.0"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
},
"redis": {
"optional": true
}
},
"engines": {
"node": ">=22.0.0"
},
"overrides": {
"tmp": "^0.2.5"
},
"devDependencies": {
"@fast-check/jest": "^1.7.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/axios-mock-adapter": "^1.10.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.10.1",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"express": "^4.19.2",
"ioredis": "^5.8.2",
"ioredis-mock": "^8.13.1",
"jest": "^29.7.0",
"jest-junit": "^14.0.1",
"jest-mock-extended": "^3.0.4",
"prettier": "^2.7.1",
"redis": "^4.7.1",
"semantic-release": "^21.0.5",
"sinon": "^15.2.0",
"ts-jest": "^29.4.5",
"typescript": "^4.8.4"
}
}