-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 881 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "foke",
"version": "0.2.1",
"description": "Simple job queues, with dash server.",
"author": "Yahtnif <yahtnif@gmail.com>",
"main": "index.js",
"repository": "yahtnif/foke",
"homepage": "https://github.com/yahtnif/foke",
"lint-staged": {
"*.js": [
"prettier --write --single-quote",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"foke",
"job",
"task",
"queue"
],
"engines": {
"node": ">=8"
},
"files": [
"index.js",
"dash.js"
],
"license": "Anti 996",
"dependencies": {
"debug": "^4.1.1",
"fastify": "^2.0.1",
"ms": "^2.1.1",
"pretty-ms": "^4.0.0",
"suni": "^0.9.0",
"timeago.js": "^4.0.0-beta.2"
},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
}
}