-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 887 Bytes
/
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
{
"name": "mediateur",
"version": "0.0.0",
"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 <[email protected]>",
"license": "MIT",
"files": [
"dist/*",
"!/**/*.test.*"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/chai": "^4.3.4",
"@types/node": "^22.9.1",
"@types/sinon": "^10.0.15",
"chai": "^4.3.7",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"sinon": "^15.1.0",
"typescript": "^5.6.3"
}
}