-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
24 lines (24 loc) · 908 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
{
"name": "node-js-design-patterns-fourth-edition",
"version": "1.0.0",
"description": "Code samples for the book Node.js Design Patterns, 4th Edition by Mario Casciaro and Luciano Mammino",
"scripts": {
"test": "pnpm run test:lint",
"test:lint": "biome check --no-errors-on-unmatched",
"test:lint-fix": "biome check --write --no-errors-on-unmatched",
"prepare": "husky"
},
"keywords": ["node.js", "design patterns", "book", "code samples"],
"author": "Luciano Mammino and Mario Casciaro",
"license": "MIT",
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903",
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/node": "^22.5.5",
"husky": "^9.1.4",
"lint-staged": "^15.2.9"
},
"lint-staged": {
"*": ["pnpm run test:lint"]
}
}