-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.58 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
{
"name": "@bervproject/feathers-advance-hook",
"displayName": "Feathers Advance Hooks",
"categories": [
"Other"
],
"files": [
"dist/**/*"
],
"version": "2.0.1",
"source": "src/index.ts",
"description": "Feathers Advance Hook",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/bervProject/feathers-advance-hook.git",
"author": "Bervianto Leo Pratama <bervianto.leo@gmail.com>",
"license": "MIT",
"maintainers": [
{
"email": "bervianto.leo@gmail.com",
"name": "Bervianto Leo Pratama",
"url": "https://berviantoleo.github.io"
}
],
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^16.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/jest": "^29.2.5",
"@types/mime-types": "^2.1.1",
"@types/node": "^22.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.4.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.2",
"rollup": "^4.9.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sizes": "^1.0.5",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^24.0.0",
"shx": "^0.3.4",
"ts-jest": "^29.0.5",
"typedoc": "^0.27.2",
"typescript": "~5.7.2"
},
"dependencies": {
"@feathersjs/errors": "^5.0.1",
"@feathersjs/feathers": "^5.0.1",
"@google-cloud/storage": "^7.0.1",
"dist": "^0.1.2",
"mime-types": "^2.1.35",
"uuid": "^11.0.2"
},
"peerDependencies": {
"@feathersjs/errors": ">=5.0",
"@feathersjs/feathers": ">=5.0",
"uuid": "^8.3.2 || ^9.0.0"
},
"keywords": [
"FeathersJs",
"Library",
"Hooks"
],
"scripts": {
"build": "rollup -c",
"docs": "typedoc --out docs src/",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"*/**/*.{js,ts}\"",
"fix-lint": "eslint \"*/**/*.{js,ts}\" --quiet --fix",
"test": "jest --forceExit"
},
"packageManager": "yarn@1.22.19"
}