-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 924 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 924 Bytes
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
{
"name": "mediateur",
"version": "0.0.0",
"packageManager": "pnpm@10.28.2",
"description": "A simple library allowing the implementation of the Mediator design pattern",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"pretest": "npm run build",
"test": "node --test",
"format": "biome format --write ./src",
"lint": "biome lint --write ./src"
},
"keywords": [
"mediator"
],
"author": "Sylvain Pontoreau <pontoreau.sylvain@gmail.com>",
"license": "MIT",
"files": [
"dist/*",
"!/**/*.test.*"
],
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/chai": "^4.3.20",
"@types/node": "^25.0.10",
"@types/sinon": "^21.0.0",
"chai": "^4.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"rimraf": "^6.1.2",
"sinon": "^21.0.1",
"typescript": "^5.9.3"
}
}