forked from ubiquity/ubiquibot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "ubiquibot",
"version": "1.0.0",
"private": true,
"description": "A Probot app",
"author": "Ubiquity DAO",
"license": "ISC",
"homepage": "https://github.com//",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build:local": "tsc",
"build:serverless": "ncc build src/index.ts -o dist",
"start:serverless": "probot run ./lib/index.js",
"start:local": "probot run ./lib/main.js",
"start:local:watch": "nodemon --exec 'yarn start:local'",
"test": "jest",
"prettier": "prettier --write src",
"_commit:watch": "nodemon --exec 'git add . && git commit -am \"update(ci)\" && git push'"
},
"dependencies": {
"@probot/adapter-github-actions": "^3.1.3",
"@vercel/ncc": "^0.34.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"probot": "^12.2.4"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/node": "^18.0.0",
"@types/source-map-support": "^0.5.6",
"jest": "^26.6.3",
"nock": "^13.0.5",
"smee-client": "^1.2.2",
"source-map-support": "^0.5.21",
"ts-jest": "^26.4.4",
"typescript": "^4.8.4"
},
"engines": {
"node": ">= 10.13.0"
}
}