-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 855 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-protocol-cli",
"description": "Encodes redis commands into redis protocol",
"version": "1.0.1",
"author": "Dhananjoy Biswas",
"repository": {
"type": "git",
"url": "http://github.com/Corei13/redis-protocol.git"
},
"bin": {
"redis-protocol": "./cli.js"
},
"scripts": {
"lint": "eslint .",
"build": "babel src/ -d lib/",
"postinstall": "npm run build"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.1.1"
},
"dependencies": {
"babel-cli": "^6.10.1",
"babel-preset-node5": "^11.1.0",
"chalk": "^1.1.3",
"commander": "^2.9.0"
},
"babel": {
"presets": [
"node5"
]
},
"bugs": {
"url": "https://github.com/Corei13/redis-protocol/issues"
},
"homepage": "https://github.com/Corei13/redis-protocol#readme"
}