-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.21 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
{
"name": "fortune-redis",
"author": {
"email": "contact@thibremy.website",
"url": "https://github.com/thibremy"
},
"license": "MIT",
"version": "2.1.0",
"description": "Redis adapter for fortune",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && mkdirp lib && babel src -d lib",
"lint": "eslint src test",
"prepublish": "npm run lint && npm run clean && npm run build",
"test": "npm run lint; babel-tape-runner test"
},
"peerDependencies": {
"fortune": "^5.0.0"
},
"dependencies": {
"ioredis": "^2.5.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-tape-runner": "^2.0.1",
"babel-eslint": "^6.1.2",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^0.1.1",
"fakeredis": "^0.3.4",
"fortune": "^5.0.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.4.3",
"tap-dot": "^1.0.5",
"tapdance": "^5.0.2"
},
"files": [
"lib/",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thibremy/fortune-redis.git"
},
"keywords": [
"fortune",
"redis",
"adapter"
],
"engines": {
"node": ">=0.12"
}
}