-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "@myunisoft/events",
"version": "6.0.0",
"description": "MyUnisoft Events validation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest && tsx ./test/run.ts",
"test:jest": "jest",
"test:node": "tsx ./test/run.ts",
"coverage": "c8 --all --src ./src -r html npm test",
"prepublishOnly": "rimraf dist/ && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyUnisoft/events.git"
},
"publishConfig": {
"@myunisoft:registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"author": "HALLAERT Nicolas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MyUnisoft/events/issues"
},
"homepage": "https://github.com/MyUnisoft/events#readme",
"keywords": [
"node",
"event",
"types",
"validation"
],
"dependencies": {
"@myunisoft/redis": "^5.1.0",
"@openally/mutex": "^1.0.0",
"@openally/result": "^1.2.1",
"ajv": "^8.16.0",
"pino": "^9.3.2",
"pino-pretty": "^11.2.1",
"ts-pattern": "^5.2.0"
},
"devDependencies": {
"@nodesecure/eslint-config": "^1.9.0",
"@openally/config.typescript": "^1.0.3",
"@types/jest": "^29.5.12",
"c8": "^10.1.2",
"dotenv": "^16.4.5",
"glob": "^11.0.0",
"jest": "^29.7.0",
"testcontainers": "^10.10.0",
"ts-jest": "^29.2.4",
"tsx": "^4.7.0",
"typescript": "^5.5.4"
}
}