forked from seomoz/qless-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.61 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
{
"name": "qless",
"version": "0.0.1",
"description": "Qless binding for JS",
"scripts": {
"coverage": "istanbul cover -- node_modules/.bin/_mocha --recursive && bash .istanbul-check-coverage.sh",
"lint": "node_modules/.bin/eslint --env node lib",
"test": "DEBUG='qless:*' node_modules/.bin/_mocha --recursive",
"build": "git submodule init && git submodule update && cd qless-core && make clean && make && cp qless.lua qless-lib.lua ../qless-lua && echo && echo ==================== && echo && echo Lua scripts successfully rebuilt!",
"travis": "npm run coverage && npm run lint && echo && echo ----------------- && echo 'Everything OK! You are good to commit.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seomoz/qless-js.git"
},
"author": "Evan Battaglia",
"contributors": [
{
"name": "Evan Battaglia",
"email": "[email protected]"
},
{
"name": "Dan Lecocq and other contributors of qless-core, qless-py, and qless Ruby",
"email": "[email protected]"
},
{
"name": "Myron Marston and other contritubutors of qless Ruby",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/seomoz/qless-js/issues"
},
"homepage": "https://github.com/seomoz/qless-js#readme",
"main": "qless.js",
"dependencies": {
"debug": "2.2.0",
"lodash": "4.13.1",
"redis": "2.6.2"
},
"devDependencies": {
"bluebird": "3.4.1",
"chai": "3.5.0",
"co": "4.6.0",
"eslint": "1.10.3",
"eslint-config-airbnb": "2.1.1",
"istanbul": "0.4.4",
"mocha": "2.5.3",
"mocha-co": "1.17.1-co.1"
}
}