forked from idealley/feathers-hooks-rediscache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"name": "feathers-hooks-rediscache",
"description": "Cache any route with redis",
"version": "0.0.1",
"homepage": "https://github.com/idealley/feathers-hooks-rediscache",
"main": "lib/library.js",
"nyc": {
"sourceMap": false,
"instrument": false
},
"keywords": [
"feathers",
"feathers-hooks",
"redis",
"cache"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/idealley/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",
"dev": "webpack --progress --colors --watch --env dev",
"dev-travis": "webpack --env dev && npm run test",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --compilers js:babel-core/register --colors ./test/*.test.js",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.test.js",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"dependencies": {
"chalk": "^2.1.0",
"express": "^4.15.4",
"moment": "^2.18.1",
"querystring": "^0.2.0",
"redis": "^2.8.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "6.24.1",
"chai": "3.5.0",
"coveralls": "^2.13.1",
"eslint": "3.19.0",
"eslint-loader": "1.7.1",
"istanbul": "^0.4.5",
"mocha": "3.3.0",
"nyc": "^11.1.0",
"webpack": "^3.5.5",
"yargs": "^8.0.2"
}
}