forked from moaxaca/async-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"private": false,
"version": "1.1.3",
"name": "async-redis",
"keywords": [
"redis",
"async",
"promise",
"es6"
],
"author": "Matthew Oaxaca",
"license": "MIT",
"description": "Light wrapper over redis_node with first class async & promise support.",
"main": "src/index.js",
"typings": "./index.d.ts",
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"coveralls": "nyc yarn test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --fix --ext .js, src",
"test": "mocha",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"dependencies": {
"redis": "^2.8.0",
"redis-commands": "^1.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"mocha": "^3.2.0",
"nyc": "^11.4.1"
},
"repository": {
"type": "git",
"url": "git://github.com/moaxaca/async-redis.git"
},
"bugs": {
"url": "https://github.com/moaxaca/async-redis/issues"
},
"directories": {
"example": "examples",
"test": "test"
}
}