forked from feathersjs-ecosystem/feathers-hooks-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.88 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
{
"name": "feathers-hooks-common",
"version": "5.0.3",
"description": "Useful hooks for use with Feathersjs services.",
"main": "lib/",
"types": "types/",
"directories": {
"lib": "lib"
},
"scripts": {
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:prerelease": "npm version prerelease && 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 && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard --fix",
"lint:types": "dtslint types",
"update-dependencies": "ncu -u",
"mocha": "mocha --recursive tests/",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --recursive tests/",
"test": "npm run lint && npm run lint:types && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/feathersjs/feathers-hooks-common.git"
},
"keywords": [
"feathers",
"feathersjs",
"hook",
"hooks",
"service",
"filters",
"permission"
],
"author": {
"name": "John J. Szwaronek",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/feathers-hooks-common/issues"
},
"homepage": "https://github.com/feathersjs/feathers-hooks-common#readme",
"dependencies": {
"@feathers-plus/batch-loader": "^0.3.6",
"@feathersjs/commons": "^4.5.3",
"@feathersjs/errors": "^4.5.3",
"@feathersjs/feathers": "^4.5.3",
"ajv": "^6.12.2",
"debug": "^4.1.1",
"graphql": "^15.1.0",
"lodash": "^4.17.15",
"process": "0.11.10",
"traverse": "^0.6.6"
},
"devDependencies": {
"@feathers-plus/cache": "^1.4.0",
"@feathers-plus/graphql": "^1.10.0",
"@feathersjs/authentication": "^4.5.3",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/authentication-local": "^4.5.4",
"@feathersjs/client": "^4.5.4",
"@feathersjs/express": "^4.5.4",
"@feathersjs/socketio": "^4.5.4",
"@feathersjs/socketio-client": "^4.5.4",
"@types/node": "^14.0.11",
"chai": "^4.2.0",
"clone": "^2.1.2",
"coveralls": "^3.1.0",
"dtslint": "^3.6.10",
"feathers-memory": "^4.1.0",
"feathers-tests-fake-app-users": "^1.0.0",
"http-shutdown": "^1.2.2",
"istanbul": "^1.1.0-alpha.1",
"mkdirp": "^1.0.4",
"mocha": "^7.2.0",
"mongodb": "^3.5.8",
"npm-check-updates": "^6.0.1",
"semistandard": "^14.2.0",
"shx": "^0.3.2",
"sift": "^13.1.10",
"vuepress": "^1.5.0",
"vuepress-theme-default-prefers-color-scheme": "^1.0.9"
},
"engines": {
"node": ">= 10"
}
}