-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
71 lines (71 loc) · 1.99 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@frontegg/client",
"version": "2.0.16",
"description": "Frontegg Javascript Library for backend node servers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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": "[email protected]:frontegg/nodejs-sdk.git"
},
"author": "Frontegg",
"license": "ISC",
"homepage": "https://github.com/frontegg/nodejs-sdk",
"dependencies": {
"@frontegg/entitlements-javascript-commons": "^1.1.2",
"axios": "^1.7.4",
"jsonwebtoken": "^9.0.0",
"node-cache": "^5.1.2",
"winston": "^3.8.2"
},
"peerDependencies": {
"ioredis": "^5.0.0",
"redis": "^4.0.0"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
},
"redis": {
"optional": true
}
},
"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.2",
"@types/node": "^12.20.55",
"@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.2.5",
"ioredis-mock": "^8.2.2",
"jest": "^29.7.0",
"jest-junit": "^14.0.1",
"jest-mock-extended": "^3.0.4",
"prettier": "^2.7.1",
"redis": "^4.6.7",
"semantic-release": "^21.0.5",
"sinon": "^15.2.0",
"ts-jest": "^29.2.4",
"typescript": "^4.8.4"
}
}