This repository has been archived by the owner on May 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "eqcbot",
"version": "1.0.0",
"private": false,
"description": "Equichain Private Key Bot",
"author": "Olivier Kobialka",
"license": "ISC",
"homepage": "https://spotkeybot-eda057ce5cb4.herokuapp.com/",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"test": "jest",
"fmt": "npm run build && npx prettier --write . && npm run eslint -- --fix",
"dev": "npm run build && npm run start",
"eslint": "eslint --ext .ts ."
},
"commitlint": {
"rules": {
"references-empty": [
2,
"never"
]
},
"parserPreset": {
"parserOpts": {
"issuePrefixes": [
"EQC-"
]
}
}
},
"dependencies": {
"probot": "^12.2.4"
},
"devDependencies": {
"@probot/adapter-aws-lambda-serverless": "^3.0.4",
"@probot/adapter-github-actions": "^3.1.3",
"@types/jest": "^29.5.11",
"@types/mocha": "^10.0.6",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"jest": "^29.0.0",
"nock": "^13.0.5",
"prettier": "^3.1.1",
"smee-client": "^1.2.2",
"ts-jest": "^29.0.0",
"typescript": "^4.1.3"
}
}