-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
{
"name": "feathers-fletching",
"version": "2.0.3",
"description": "Hooks, services, and plugins for feathers.js",
"repository": {
"type": "git",
"url": "https://github.com/DaddyWarbucks/feathers-fletching.git"
},
"author": "DaddyWarbucks <[email protected]>",
"homepage": "https://daddywarbucks.github.io/feathers-fletching/",
"license": "MIT",
"keywords": [
"feathers",
"feathersjs",
"hooks"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"private": false,
"scripts": {
"docs:dev": "docsify serve ./docs",
"build": "unbuild",
"lint": "eslint src/.",
"fixcode": "eslint src/. --fix",
"test": "npm run lint && vitest run",
"test:run": "vitest run",
"vitest": "vitest",
"prepublishOnly": "npm run build",
"release:patch": "npm run test && npm version patch && npm publish",
"release:minor": "npm run test && npm version minor && npm publish",
"release:major": "npm run test && npm version major && npm publish"
},
"dependencies": {
"@feathersjs/errors": "^5.0.6",
"lru-cache": "^10.0.1",
"rate-limiter-flexible": "^2.4.2",
"qs": "^6.11.2",
"unset-value": "^2.0.1"
},
"devDependencies": {
"@feathersjs/feathers": "^5.0.6",
"@feathersjs/memory": "^5.0.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"docsify-cli": "^4.4.4",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"typescript": "^5.1.6",
"unbuild": "^1.2.1",
"vitest": "^0.32.2"
},
"peerDependencies": {
"@feathersjs/feathers": "^5.0.0"
}
}