-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 969 Bytes
/
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
{
"name": "redis-node-cache",
"version": "1.2.0",
"description": "A simple redis cache for node apps.",
"main": "./dist",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/victorzidaroiu/redis-node-cache"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register ./tests/*",
"build": "babel ./src -d ./dist",
"preversion": "npm run build"
},
"author": "Victor Zidaroiu",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.0",
"redis": "^2.7.1"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.4.2",
"proxyquire": "^1.8.0",
"sinon": "^2.3.6"
}
}