forked from enobufs/dtimer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.1 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.1 KB
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
{
"name": "@eflexsystems/dtimer",
"version": "4.0.2",
"description": "Distributed timer backed by Redis.",
"main": "index.js",
"scripts": {
"test": "DEBUG=dtimer mocha",
"posttest": "eslint lib test",
"lint": "eslint lib test",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git://github.com/eflexsystems/dtimer.git"
},
"dependencies": {
"debug": "^4.3.4",
"ioredis": "^5.0.1"
},
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.2.0",
"prettier": "^2.6.1",
"sinon": "^15.0.1"
},
"keywords": [
"timer",
"timed",
"scheduler",
"event",
"cluster",
"redis"
],
"author": "eFlex Systems",
"license": "MIT",
"bugs": {
"url": "https://github.com/eflexsystems/dtimer/issues"
},
"homepage": "https://github.com/eflexsystems/dtimer",
"eslintConfig": {
"env": {
"es2021": true,
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": "latest"
},
"extends": ["eslint:recommended", "prettier"]
}
}