-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 1.64 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
70
{
"name": "bull-prom",
"version": "3.2.1",
"description": "Provide prometheus metrics for Bull",
"license": "MIT",
"repository": "https://github.com/pbadenski/bull-prom",
"author": "Pawel Badenski <pawel.badenski@gmail.com>",
"keywords": [
"prometheus",
"bull",
"metrics"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "npm run build",
"shipit": "yarn clean && yarn build && yarn lint && yarn test && scripts/publish.sh",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch"
},
"peerDependencies": {
"bull": ">=3",
"prom-client": ">=13.1.0"
},
"devDependencies": {
"@types/bull": "^3.15.1",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"@types/sinon": "^10.0.0",
"bull": "^3.22.5",
"chai": "^4.3.4",
"conventional-changelog": "^3.1.24",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.1.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prom-client": "^13.1.0",
"rimraf": "^3.0.2",
"sinon": "^10.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=12"
},
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"lib"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [],
"all": true
}
}