-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "ewd-qoper8",
"version": "3.18.1",
"config": {
"date": "11 February 2020"
},
"description": "High-performance Message Queue for Node.js",
"main": "index.js",
"scripts": {
"lint": "jshint spec",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jasmine --config=spec/support/unit.json",
"test:integration": "jasmine --config=spec/support/integration.json",
"coverage:unit": "nyc --reporter=html --reporter=text jasmine --config=spec/support/unit.json",
"coverage:integration": "nyc --reporter=html --reporter=text jasmine --config=spec/support/integration.json",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js"
],
"exclude": [
"spec/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/robtweed/ewd-qoper8.git"
},
"author": "Rob Tweed, M/Gateway Developments Ltd",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/robtweed/ewd-qoper8/issues"
},
"homepage": "https://github.com/robtweed/ewd-qoper8#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"jasmine": "^2.8.0",
"jasmine-spec-reporter": "^4.1.1",
"jasmine-spy-matchers": "^1.2.0",
"jshint": "^2.9.5",
"mockery": "^2.1.0",
"nyc": "^11.2.1",
"pre-commit": "^1.2.2",
"rewire": "^2.5.2"
},
"pre-commit": [
"lint",
"test:unit"
],
"dependencies": {
"double-ended-queue": ""
}
}