-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
110 lines (110 loc) · 3.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "feathers-hooks-common",
"version": "8.2.1",
"description": "Useful hooks for use with Feathersjs services.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"compile": "shx rm -rf dist/ && tsup src/index.ts --format cjs,esm --dts --treeshake",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs",
"prepublishOnly": "npm run compile",
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:prerelease": "npm version prerelease --preid pre && npm publish --tag pre",
"release:premajor": "npm version premajor --preid pre && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator --max-issues 200 -u feathersjs-ecosystem -p feathers-hooks-common && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "eslint src/**/*.ts test/**/*.ts --fix",
"update-dependencies": "ncu -u -x ajv",
"test:unit": "vitest run",
"coverage": "vitest run --coverage",
"test": "npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feathersjs-ecosystem/feathers-hooks-common.git"
},
"keywords": [
"feathers",
"feathersjs",
"hook",
"hooks",
"service",
"filters",
"permission"
],
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-hooks-common/issues"
},
"homepage": "https://hooks-common.feathersjs.com/",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"lib/**",
"dist/**"
],
"dependencies": {
"@feathersjs/errors": "^5.0.29",
"ajv": "^6.12.6",
"debug": "^4.3.5",
"graphql": "^16.9.0",
"lodash": "^4.17.21",
"neotraverse": "^0.6.14"
},
"devDependencies": {
"@feathers-plus/batch-loader": "^0.3.6",
"@feathers-plus/cache": "^1.4.0",
"@feathers-plus/graphql": "^1.10.0",
"@feathersjs/authentication": "^5.0.29",
"@feathersjs/authentication-local": "^5.0.29",
"@feathersjs/client": "^5.0.29",
"@feathersjs/express": "^5.0.29",
"@feathersjs/memory": "^5.0.29",
"@feathersjs/socketio": "^5.0.29",
"@feathersjs/socketio-client": "^5.0.29",
"@types/debug": "^4.1.12",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"mongodb": "^5.9.2",
"npm-check-updates": "^16.14.20",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"sift": "^17.1.3",
"tsup": "^8.1.2",
"typescript": "^5.5.3",
"vitepress": "^1.3.1",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@feathersjs/feathers": "^5.0.0"
},
"engines": {
"node": ">= 18"
}
}