-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 922 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 922 Bytes
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
{
"name": "pipebot",
"version": "1.4.1",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "npm run test:unit && npm run test:repo-config && npm run test:pipeline-state && npm run test:webhooks && npm run test:security",
"test:unit": "node test/test-unit.js",
"test:repo-config": "node test/test-repo-config.js",
"test:pipeline-state": "node test/test-pipeline-state.js",
"test:webhooks": "node test/test-webhooks.js",
"test:security": "node test/test-security.js",
"test:telegram": "node test/test-telegram.js",
"config:build": "node scripts/build-config.js",
"config:write": "node scripts/build-config.js --write"
},
"keywords": [],
"author": "nightrunner91",
"license": "ISC",
"description": "",
"dependencies": {
"dotenv": "^17.4.2",
"express": "^5.2.1",
"telegraf": "^4.16.3"
},
"engines": {
"node": ">=18"
}
}