-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.81 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dr_queue",
"version": "0.1.6",
"description": "This is Dr. Queue - A REST interface and Redis Queue manager custom logging and middlware support for Koa ^2.0.",
"main": "out/index.js",
"scripts": {
"clean": "rm -rf out/*",
"lint": "./node_modules/.bin/eslint src/*.js",
"start": "npm run clean && npm run build && HOSTNAME='localhost' && HOST_IP='127.0.0.1' && node --trace-warnings out/index.js --server",
"subscriber": "npm run clean && npm run build && HOSTNAME='localhost' && HOST_IP='127.0.0.1' && node --trace-warnings out/redis/subscriber.js --channel $CHANNEL",
"build": "bin/build",
"mocha": "NODE_ENV=test && npm run build && ./node_modules/.bin/mocha test/*.js",
"test:grep": "./test/script/test-grep.sh",
"test": "npm run lint && npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reduxdj/dr_queue.git"
},
"author": "queue redis",
"license": "MIT",
"bugs": {
"url": "https://github.com/reduxdj/dr_queue/issues"
},
"homepage": "https:/github.com/reduxdj/dr_queue/#readme",
"dependencies": {
"chai": "^4.2.0",
"chalk": "^2.4.2",
"config": "^3.0.1",
"dotenv": "^6.1.0",
"fs": "0.0.1-security",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-cookie": "^1.0.0",
"koa-cors": "0.0.16",
"koa-router": "^7.4.0",
"koa-websocket": "^5.0.1",
"lodash": "^4.17.10",
"microseconds": "^0.1.0",
"mocha": "^5.2.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.23",
"redis": "^2.8.0",
"strip-ansi": "^5.2.0",
"supertest": "^4.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-export-extensions": "^7.0.0-beta.32",
"@babel/plugin-transform-shorthand-properties": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^5.15.3",
"eslint-config-google": "^0.9.1",
"eslint-plugin-import": "^2.13.0",
"jest": "^23.6.0"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"arrowParens": "always",
"semi": false,
"printWidth": 110
},
"keywords": [
"Logging",
"Winston",
"Koa",
"Middleware",
"pubnub",
"Queue"
]
}