-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 923 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 923 Bytes
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
{
"name": "radredis",
"version": "1.2.3",
"description": "Redis Data Adapter",
"main": "lib/index.js",
"repository": "https://github.com/bustlelabs/radredis",
"scripts": {
"compile": "babel -d lib/ src/",
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register",
"prepublish": "npm run compile"
},
"contributors": [
"Tyler Love <tyler@bustle.com",
"Steve Faulkner <steve@bustle.com>",
"Tristan Siegel <tristan@bustle.com>"
],
"license": "MIT",
"dependencies": {
"bluebird": "^3.3.0",
"ioredis": "^2.0.0-rc2",
"lodash": "^4.3.0",
"mocha": "^3.1.2",
"through2": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.5.2",
"babel-preset-es2015-node4": "^2.1.0",
"expect.js": "^0.3.1",
"mocha": "^3.1.2",
"sinon": "^1.17.2"
}
}