This repository has been archived by the owner on Mar 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
{
"name": "handlr",
"version": "0.1.0",
"description": "Job queue and handler for NodeJS",
"main": "source/index.js",
"scripts": {
"docs": "jsdoc2md source/**/*.js > API.md",
"format": "prettier --write '{source,test}/**/*.js'",
"precommit": "lint-staged",
"test": "run-s test:integration test:format",
"test:format": "prettier-check '{source,test}/**/*.js'",
"test:integration": "run-s test:integration:clustering",
"test:integration:clustering": "mocha --timeout 10000 -r test/bootstrap.js 'test/integration-clustering/**/*.spec.js'",
"test:integration:watch": "nodemon --exec 'npm run test:integration'"
},
"lint-staged": {
"{source,test}/**/*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"chalk": "^2.4.0",
"eventemitter3": "^3.0.1",
"figures": "^2.0.0",
"is-error": "^2.2.1",
"jsome": "^2.5.0",
"left-pad": "^1.3.0",
"log-symbols": "^2.2.0",
"merge": "^1.2.0",
"ms": "^2.1.1",
"pretty-error": "^2.1.1",
"pretty-ms": "^3.1.0",
"serialize-error": "^2.1.0",
"uuid": "^3.2.1",
"verror": "^1.10.0"
},
"devDependencies": {
"chai": "^4.1.2",
"husky": "^0.14.3",
"jsdoc-to-markdown": "^4.0.1",
"lint-staged": "^7.0.4",
"mocha": "^5.1.1",
"nodemon": "^1.17.3",
"npm-run-all": "^4.1.2",
"prettier": "^1.12.1",
"prettier-check": "^2.0.0",
"sinon": "^4.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kiosked/handlr.git"
},
"keywords": [
"job",
"queue",
"handler",
"task"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kiosked/handlr/issues"
},
"homepage": "https://github.com/Kiosked/handlr#readme"
}