-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@bemit/cloud-id",
"version": "0.4.0",
"description": "",
"homepage": "https://bemit.codes",
"author": {
"name": "bemit",
"url": "https://bemit.codes"
},
"contributors": [
{
"name": "Michael Becker",
"url": "https://i-am-digital.eu"
}
],
"license": "MIT",
"keywords": [
"oauth"
],
"engines": {
"node": ">=14"
},
"type": "module",
"exports": {
"./AuthCache": "./AuthCache.js",
"./AuthCacheMemory": "./AuthCacheMemory.js",
"./AuthCacheRedis": "./AuthCacheRedis.js",
"./IdClientAuth": "./IdClientAuth.js",
"./IdManager": "./IdManager.js",
"./ResourceClient": "./ResourceClient.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bemit-cloud/bemit-id-js.git"
},
"scripts": {
"prebuild": "npm run clean-dist && npm run test",
"build": "cross-env NODE_ENV=production CI=true npm run build-babel",
"postbuild": "npm run dtsgen",
"build-babel": "babel src --no-comments --extensions .ts --extensions .tsx --extensions .js --extensions .jsx --ignore **/*.d.ts --ignore **/*.test.ts --out-dir build",
"clean-dist": "rimraf build && rimraf coverage",
"test": "jest -c=\"jest.config.ts\" --passWithNoTests",
"tdd": "npm test -- --watch --watchman --coverage=false",
"dtsgen": "tsc -d --emitDeclarationOnly --pretty && cp -R build/dts/* build && rm -rf build/dts && rimraf build/**/*.test.*"
},
"peerDependencies": {
"@bemit/redis": "~0.1.0-alpha.0",
"redis": "^4.0.2",
"superagent": "^7.1.5 || ^8.0.0 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"redis": {
"optional": true
},
"@bemit/redis": {
"optional": true
}
},
"dependencies": {
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@bemit/redis": "~0.1.0-alpha.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/superagent": "^4.1.15",
"superagent": "^10.1.0",
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@jest/types": "^29.6.3",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"eslint": "^8.57.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.36.1",
"jest": "^29.7.0",
"jest-runner-eslint": "^2.2.0",
"redis": "^4.0.2",
"rimraf": "^3.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
},
"jest-runner-eslint": {
"cliOptions": {
"maxWarnings": 0
}
}
}