-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.53 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
53
{
"name": "nodejs-observer-sample",
"version": "0.0.0",
"description": "This repository is meant to showcase my talents as a back-end engineer to potential employers. It is programmed entirely in Node.js with Travis-CI for CI and Docker as its IAC.",
"main": "bin/server.js",
"scripts": {
"build": "echo 'Building...'",
"test": "c8 --reporter=html --reporter=text mocha",
"coverage": "c8 report --reporter=text-lcov | coveralls",
"lint": "eslint '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wotsyula/nodejs-observer-sample.git"
},
"keywords": [
"bullmq",
"docker",
"kubernetes",
"REST",
"travis-ci"
],
"author": "Walter Otsyula <wotsyula@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wotsyula/nodejs-observer-sample/issues"
},
"homepage": "https://github.com/wotsyula/nodejs-observer-sample#readme",
"devDependencies": {
"c8": "^7.10.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"mocha-eslint": "^7.0.0",
"nock": "^13.1.4",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0"
},
"dependencies": {
"bullmq": "^1.51.1",
"jsonschema": "^1.4.0",
"superagent": "^6.1.0"
}
}