forked from feathersjs-ecosystem/feathers-hooks-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·93 lines (93 loc) · 2.76 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
{
"name": "feathers-hooks-common",
"version": "4.20.7",
"description": "Useful hooks for use with Feathersjs services.",
"main": "lib/",
"types": "types/",
"directories": {
"lib": "lib"
},
"scripts": {
"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 && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard --fix",
"lint:types": "npx dtslint types",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"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": "johnsz9999@gmail.com",
"url": "https://feathers-plus.github.io"
},
"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.0",
"@feathersjs/commons": "^1.4.0",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/feathers": "^3.1.3",
"@types/graphql": "^14.0.4",
"ajv": "^5.5.2",
"debug": "^3.1.0",
"graphql": "^14.0.2",
"libphonenumber-js": "^1.6.8",
"process": "0.11.10",
"traverse": "^0.6.6"
},
"devDependencies": {
"@feathers-plus/cache": "^1.4.0",
"@feathers-plus/graphql": "^1.9.0",
"@feathersjs/authentication": "^2.1.7",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/client": "^3.5.4",
"@feathersjs/express": "^1.2.3",
"@feathersjs/socketio": "^3.2.2",
"@feathersjs/socketio-client": "^1.1.0",
"@types/feathersjs__feathers": "^3.0.4",
"chai": "^4.1.2",
"clone": "^2.1.1",
"coveralls": "^3.0.0",
"feathers-authentication-hooks": "^0.3.0",
"feathers-memory": "^2.1.0",
"feathers-tests-fake-app-users": "^1.0.0",
"http-shutdown": "^1.2.0",
"istanbul": "^1.1.0-alpha.1",
"mkdirp": "^0.5.1",
"mocha": "^5.0.1",
"mongodb": "^3.1.0-beta4",
"semistandard": "^12.0.0",
"shx": "^0.2.2",
"sift": "^5.0.0"
},
"engines": {
"node": ">= 6"
}
}