-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "barky",
"version": "1.1.20",
"description": "A simple cloud services watchdog with digest notification support & no external dependencies",
"homepage": "https://github.com/Rohland/barky#readme",
"main": "dist/cli.js",
"scripts": {
"prebuild": "rm -rf ./dist && mkdir dist",
"build": "tsc --build",
"postbuild": "cp package.json dist/package.json",
"start": "ts-node src/cli.ts",
"pretest": "tsc",
"test": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"knex": "^3.1.0",
"mysql2": "^3.11.3",
"sqlite3": "^5.1.7",
"tslib": "^2.8.0",
"yaml": "^2.6.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@types/jest": "^29.5.14",
"@types/node": "^22.7.9",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-mock-console": "^2.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"bin": {
"barky": "dist/cli.js"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rohland/barky.git"
}
}