forked from Julusian/then-fakeredis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "then-fakeredis",
"version": "2.0.1",
"description": "Promise-based Redis client",
"author": "Michael Jackson",
"license": "MIT",
"main": "modules",
"files": [
"lib"
],
"scripts": {
"lint": "eslint modules",
"build": "rimraf lib && babel ./modules -d lib --ignore '__tests__'",
"test": "npm run lint && mocha --compilers js:babel-register --reporter spec 'modules/**/*-test.js'",
"prepublish": "npm run build",
"release": "node ./scripts/release.js"
},
"peerDependencies": {
"fakeredis": "*",
"redis-commands": "*"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"expect": "^1.19.0",
"mocha": "^2.0.1",
"readline-sync": "^1.4.1",
"rimraf": "^2.5.2"
},
"repository": {
"type": "git",
"url": "https://github.com/julusian/then-fakeredis.git"
},
"keywords": [
"redis",
"then",
"promise",
"promises"
],
"babel": {
"presets": [
"es2015"
]
}
}