-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 978 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
{
"name": "userland-migrations",
"version": "1.0.0",
"description": "A collection of migration recipes for userland code.",
"scripts": {
"lint:fix": "biome lint --fix ./",
"lint": "biome lint ./",
"pre-commit": "node --run lint:fix; node --run type-check; node --run test",
"test": "npm run test --workspaces -- --no-warnings --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout",
"type-check": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/nodejs/userland-migrations"
},
"keywords": [
"automation",
"codemod",
"migrations",
"node.js"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nodejs/userland-migrations/issues"
},
"homepage": "https://nodejs.org/learn/userland-migrations",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.1",
"typescript": "^5.7.2"
},
"workspaces": [
"./recipes/*"
]
}