-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.7 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.7 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
{
"name": "jseventqueue",
"version": "1.0.1",
"description": "A JavaScript (ES6) library for serializing event processing. It is intended to be used by multiple producers and a single consumer. Event processing is using ayns/await mechanism, which helps to process events one-at-a-time.",
"main": "src/event-queue.js",
"files": [
"src/event-queue.js"
],
"scripts": {
"esdoc": "esdoc -c ./esdoc.json",
"eslint-fix": "eslint --config=./config/eslint.config.json --fix src/**/*.js test/**/*.js",
"eslint-watch": "esw --config=./config/eslint.config.json -w --fix src/**/*.js test/**/*.js",
"test": "nyc --reporter=html --reporter=text --report-dir=./build/coverage --check-coverage --lines 100 --functions 100 --branches 100 mocha --reporter mocha-multi-reporters --reporter-options configFile=./config/mocha-reporters.json test/*.spec.js",
"test-watch": "mocha --reporter spec -w --recursive test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kirusi/jseventqueue.git"
},
"keywords": [
"event",
"queue",
"async",
"for-await-of",
"await"
],
"author": "Kirusi Msafiri",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kirusi/jseventqueue/issues"
},
"homepage": "https://github.com/Kirusi/jseventqueue#readme",
"devDependencies": {
"coveralls": "^3.0.3",
"esdoc": "^1.0.4",
"esdoc-node": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"eslint-watch": "^5.0.1",
"mocha": "^4.1.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^13.3.0",
"should": "^13.1.3"
},
"dependencies": {}
}