forked from feathersjs-ecosystem/feathers-hooks-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.39 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
{
"name": "feathers-hooks-common",
"version": "1.7.2",
"description": "Useful hooks for use with Feathersjs services.",
"main": "lib/",
"directories": {
"lib": "lib"
},
"scripts": {
"copy": "rimraf lib/ && cp -r src/ lib/",
"babel": "babel src/ --out-dir lib --presets babel-preset-es2015",
"babel:watch": "babel src/ --watch --out-dir lib --presets babel-preset-es2015",
"mocha": "mocha test/ --reporter spec --opts mocha.opts",
"mocha:only": "mocha test/ --reporter spec --opts mocha.opts",
"lint": "eslint-if-supported semistandard",
"lint:fix": "eslint-if-supported semistandard --fix",
"build": "npm run copy && npm run babel",
"test": "npm run build && npm run lint && npm run mocha",
"test:build": "npm run build && npm run mocha:only",
"test:only": "npm run mocha:only",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --reporter spec test/*",
"watch": "npm run copy && npm run babel:watch",
"npm:patch": "npm version patch && npm publish",
"npm:minor": "npm version minor && npm publish",
"npm:major": "npm version major && npm publish",
"npm:updates": "npm-check-updates",
"changelog": "git log --pretty=format:'%h% B'"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"/lib"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/feathersjs/feathers-hooks-common.git"
},
"keywords": [
"feathers",
"feathersjs",
"hook",
"hooks"
],
"author": "John Szwaronek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/feathers-hooks-common/issues"
},
"homepage": "https://github.com/feathers/feathers-hooks-common#readme",
"dependencies": {
"debug": "^2.2.0",
"feathers-authentication": "^0.7.11",
"feathers-errors": "^2.4.0",
"object.assign": "^4.0.4"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "^6.16.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint-if-supported": "^1.0.1",
"feathers-tests-fake-app-users": "^1.0.0",
"istanbul": "^0.4.5",
"mocha": "^2.5.3",
"rimraf": "^2.5.4",
"semistandard": "^9.1.0"
},
"engines": {
"node": ">=4.6.1",
"npm": ">=2.15.9"
}
}