This repository has been archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.28 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
{
"name": "feathers-community-hooks",
"version": "1.0.0",
"description": "Useful Feathers hooks provided by the Feathers community.",
"main": "lib/",
"directories": {
"lib": "lib"
},
"scripts": {
"prepublish": "npm run compile",
"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\"",
"compile": "shx rm -rf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"lint": "eslint-if-supported semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run compile && npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"/lib"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/feathersjs/feathers-community-hooks.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/feathers-community-hooks/issues"
},
"homepage": "https://github.com/feathersjs/feathers-community-hooks#readme",
"dependencies": {
"clone": "^2.1.1",
"debug": "^3.0.0",
"feathers-errors": "^2.4.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.16.0",
"chai": "^4.0.0",
"coveralls": "^2.11.14",
"eslint-if-supported": "^1.0.1",
"feathers": "^2.0.3",
"feathers-hooks": "^2.0.0",
"feathers-memory": "^1.0.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.1.2",
"semistandard": "^11.0.0",
"shx": "^0.2.2"
},
"engines": {
"node": ">= 4.6.1"
}
}