forked from feathersjs-ecosystem/feathers-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "feathers-hooks",
"version": "1.5.4",
"description": "Before and after service method call hooks for easy authorization and processing.",
"homepage": "https://github.com/feathersjs/feathers-hooks",
"keywords": [
"feathers-plugin",
"feathers"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-hooks.git"
},
"author": {
"name": "David Luecke",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-hooks/issues"
},
"engines": {
"node": ">=0.10.0"
},
"main": "lib/hooks.js",
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin && git push origin --tags",
"release:prerelease": "npm version prerelease && npm publish",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "rimraf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/ --compilers js:babel-core/register",
"test": "npm run compile && npm run jshint && npm run mocha"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"feathers-commons": "^0.7.0",
"feathers-errors": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-preset-es2015": "^6.3.13",
"feathers": "^2.0.0",
"feathers-memory": "^0.7.0",
"feathers-rest": "^1.2.2",
"jshint": "^2.8.0",
"mocha": "^2.5.0",
"rimraf": "^2.5.2"
}
}