forked from loopj/node-sidekiq
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 901 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
{
"name": "sidekiq-client",
"version": "1.2.3",
"description": "Enqueue sidekiq jobs from your node apps.",
"main": "build/index.js",
"scripts": {
"prebuild": "rimraf build",
"build": "babel src --out-dir build",
"prerelease": "yarn build",
"release": "npm publish"
},
"repository": {
"type": "git",
"url": "git://github.com/Bunhouth/node-sidekiq"
},
"keywords": [
"sidekiq",
"queue",
"redis"
],
"author": {
"name": "Bunhouth",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"rimraf": "^2.6.3"
},
"dependencies": {
"redis": "^2.8.0"
}
}