-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 loc) · 1.86 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
67
68
69
{
"name": "aedes-stats",
"version": "4.0.0",
"description": "stats for aedes",
"main": "stats.js",
"scripts": {
"lint": "npm run lint:standard && npm run lint:markdown",
"lint:fix": "standard --fix",
"lint:standard": "standard --verbose | snazzy",
"lint:markdown": "markdownlint docs/*.md README.md",
"test": "npm run lint && npm run unit",
"test:ci": "npm run lint && npm run unit -- --cov --no-check-coverage --coverage-report=lcovonly",
"test:report": "npm run lint && npm run unit:report",
"unit": "tap -J test.js",
"unit:report": "tap -J test.js --cov --coverage-report=html --coverage-report=cobertura | tee out.tap",
"license-checker": "license-checker --production --onlyAllow=\"MIT;ISC;BSD-3-Clause;BSD-2-Clause\"",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it --disable-metrics"
},
"release-it": {
"github": {
"release": true
},
"git": {
"tagName": "v${version}"
},
"hooks": {
"before:init": [
"npm run test:ci"
]
},
"npm": {
"publish": true
}
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/moscajs/aedes-stats.git"
},
"keywords": [
"stats",
"aedes",
"mqtt",
"broker"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/moscajs/aedes-stats/issues"
},
"homepage": "https://github.com/moscajs/aedes-stats#readme",
"engines": {
"node": ">=14"
},
"devDependencies": {
"aedes": "^0.51.0",
"license-checker": "^25.0.1",
"markdownlint-cli": "^0.32.1",
"mqtt": "^4.3.7",
"pre-commit": "^1.2.2",
"qlobber": "^7.0.1",
"release-it": "^17.0.5",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.0"
}
}