-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
90 lines (90 loc) · 2.89 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
{
"name": "feathers-hooks-rediscache",
"description": "Cache any route with redis",
"version": "1.1.4",
"homepage": "https://github.com/idealley/feathers-hooks-rediscache",
"main": "lib/library.min.js",
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"keywords": [
"feathers",
"feathers-hooks",
"redis",
"cache"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/renaudfv/feathers-hooks-rediscache.git"
},
"author": {
"name": "Samuel Pouyt",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/idealley/feathers-hooks-rediscache/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"build": "webpack --env build --mode production",
"dev": "webpack --progress --colors --watch --env dev --mode development",
"dev-travis": "webpack --mode production && npm run test",
"mocha": "mocha --compilers js:@babel/register --colors ./test/ --recursive --exit",
"reporter": "NODE_ENV=test nyc npm run mocha",
"test": "npm run reporter",
"test:redis-after": "NODE_ENV=test nyc mocha --require @babel/register --colors ./test/hooks/redis-after.test.js --watch",
"test:redis-before": "NODE_ENV=test nyc mocha --compilers js:@babel/register --colors ./test/hooks/redis-before.test.js --watch",
"test:routes": "NODE_ENV=test nyc mocha --compilers js:@babel/register --colors ./test/routes.test.js --watch",
"test:cache-hook": "NODE_ENV=test nyc mocha --compilers js:@babel/register --colors ./test/cache.test.js --watch",
"test:watch": "mocha --compilers js:@babel/register --colors -w ./test/*.test.js",
"coverage": "nyc report --reporter=text-lcov",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"dependencies": {
"chalk": "^2.3.2",
"express": "^4.16.3",
"moment": "^2.21.0",
"qs": "^6.5.1",
"redis": "^2.8.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-es2015": "^7.0.0-beta.49",
"@babel/register": "^7.0.0-beta.49",
"babel-loader": "8.0.0",
"babel-eslint": "8.2.6",
"babel-plugin-add-module-exports": "0.3.3",
"babel-plugin-istanbul": "^4.1.6",
"body-parser": "^1.18.2",
"chai": "4.1.2",
"coveralls": "^3.0.0",
"eslint": "5.0.1",
"eslint-loader": "2.1.0",
"feathers": "^2.2.4",
"feathers-errors": "^2.9.2",
"feathers-hooks": "^2.1.2",
"feathers-rest": "^1.8.1",
"istanbul": "^0.4.5",
"mocha": "5.0.5",
"nyc": "^12.0.1",
"request-promise": "^4.2.2",
"webpack": "^4.2.0",
"webpack-cli": "^3.0.8",
"yargs": "^12.0.1"
}
}