-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.74 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
{
"name": "pinion",
"private": true,
"homepage": "http://feathersjs.com",
"repository": {
"type": "git",
"url": "git://github.com/feathershq/pinion.git"
},
"author": {
"name": "Feathers Cloud Inc.",
"email": "[email protected]",
"url": "https://feathers.cloud"
},
"type": "module",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
},
"bugs": {
"url": "https://github.com/feathershq/pinion/issues"
},
"engines": {
"node": ">= 18"
},
"workspaces": [
"packages/*"
],
"scripts": {
"publish": "lerna publish && npm run update-changelog",
"publish:prerelease": "lerna publish prerelease --preid pre --pre-dist-tag pre --dist-tag pre && npm run update-changelog",
"update-changelog": "git commit -am \"chore: Update changelog\" && git push origin",
"prettier": "npx prettier \"packages/{,!(node_modules)/**/(src|test)/**/}*.ts\" --write",
"eslint": "eslint \"packages/**/*.ts\" --fix",
"lint": "npm run prettier && npm run eslint",
"update-dependencies": "ncu -u -x eslint && lerna exec -- ncu -u",
"dev": "vitest watch --coverage",
"vitest": "vitest run --coverage",
"test": "npm run lint && npm run compile --workspaces && npm run vitest"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"lerna": "^8.1.9",
"npm-check-updates": "^17.1.9",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}