-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.1 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
{
"name": "ms-token",
"version": "6.0.0",
"description": "utils for makeomatic mservice for encoding/decoding various token types and storing associated metadata with them",
"main": "./lib/index.js",
"scripts": {
"test": "pnpm lint && pnpm test-unit && pnpm test-integration",
"test-unit": "mocha --extensions ts test/unit.ts",
"test-integration": "mdep test run -t ./test/integration.ts",
"lint": "eslint ./src",
"compile": "rimraf ./lib *.tsbuildinfo; tsc --build tsconfig.build.json && copyfiles -u 1 ./src/backends/**/*.lua ./lib",
"prepublishOnly": "pnpm compile",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/makeomatic/ms-token.git"
},
"keywords": [
"crypto",
"tokens",
"challenge",
"utils",
"mservice"
],
"author": "Vitaly Aminev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/ms-token/issues"
},
"homepage": "https://github.com/makeomatic/ms-token#readme",
"peerDependencies": {
"ioredis": "4.x.x"
},
"engine": {
"node": ">= 20.17.0"
},
"devDependencies": {
"@makeomatic/deploy": "^13.1.0",
"@types/base64-url": "^2.2.2",
"@types/chance": "^1.1.6",
"@types/get-value": "^3.0.5",
"@types/glob": "^8.1.0",
"@types/ioredis": "^4.28.10",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.9",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-makeomatic": "^6.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-promise": "^4.3.1",
"ioredis": "^4.28.5",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"chance": "^1.1.12",
"get-value": "^3.0.1",
"glob": "^11.0.0",
"joi": "^17.13.3",
"read-pkg": "^5.2.0",
"uuid": "^10.0.0"
},
"files": [
"src/",
"lib/",
"bin/"
]
}