-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@quadrabee/arnavon",
"description": "Framework on top of RabbitMQ for easing up the development of producer/consumer/job queues.",
"version": "1.0.0-rc.1",
"author": "Louis Lambeau <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"arnavon": "./bin/run"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/dist",
"/src"
],
"bugs": "https://github.com/quadrabee/arnavon/issues",
"scripts": {
"test": "mocha tests",
"test:watch": "mocha --watch tests",
"lint": "tsc && eslint src **/*.ts .eslintrc.js",
"lint:fix": "tsc && eslint --fix src tests *.ts .eslintrc.js",
"build": "shx rm -rf dist && tsc",
"build:watch": "babel ./src --watch --out-dir ./dist --source-maps --copy-files -x .ts",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "yarn build && oclif manifest && oclif readme",
"version": "echo $npm_package_version",
"package": "pkg . --out-path pkg/"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@enspirit/eslint-config-node": "^0.1.5",
"@oclif/test": "^1.2.9",
"@types/amqplib": "^0.10.4",
"@types/body": "^5.1.4",
"@types/bunyan": "^1.8.11",
"@types/command-exists": "^1.2.3",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.2",
"@types/sinon-chai": "^3.2.12",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"babel-loader": "^9.1.3",
"body-parser": "^1.20.2",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.4.0",
"eslint": "^7.32.0",
"globby": "^14.0.0",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"nodemailer": "^6.9.7",
"nyc": "^15.1.0",
"oclif": "^3.17.2",
"pkg": "^5.8.1",
"proxyquire": "^2.1.3",
"shx": "^0.3.4",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"ts-node": "^10.9.2",
"@babel/register": "^7.23.7",
"@oclif/core": "^1.26.2",
"amqplib": "^0.10.4",
"bunyan": "^1.8.15",
"command-exists": "^1.2.9",
"core-js": "^3.37.0",
"express": "^4.19.2",
"express-prom-bundle": "^6.6.0",
"finitio": "^1.3.7",
"prom-client": "^15.1.2",
"regenerator-runtime": "^0.14.1",
"uuid": "^9.0.1",
"yaml": "^2.4.2"
},
"engines": {
"node": ">=18.0.0"
},
"oclif": {
"commands": "./dist/cli/commands",
"bin": "arnavon",
"plugins": [
"@oclif/plugin-help"
]
},
"pkg": {
"scripts": [
"bin/**/*.js",
"dist/**/*.js"
],
"targets": [
"node18-linux",
"node18-macos-x64",
"node18-win"
]
}
}