This repository has been archived by the owner on May 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "ti-sync-bot",
"version": "1.0.0",
"private": true,
"description": "A Github App that used to sync tidb community info that contains pull request, issue, comment and contributor info.",
"author": "mini256 <[email protected]>",
"license": "ISC",
"repository": "https://github.com/ti-community-infra/ti-sync-bot.git",
"homepage": "https://github.com/ti-community-infra/ti-sync-bot",
"bugs": "https://github.com/ti-community-infra/ti-sync-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"dev": "npm run build:watch",
"start": "probot run ./lib/index.js",
"doc:preview": "docsify serve docs --port 3018",
"test": "jest --coverage",
"lint": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" *.md package.json tsconfig.json",
"lint:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" *.md package.json tsconfig.json"
},
"dependencies": {
"mysql": "^2.18.1",
"probot": "^11.0.6",
"reflect-metadata": "^0.1.10",
"typedi": "^0.8.0",
"typeorm": "0.2.32",
"typeorm-typedi-extensions": "^0.2.3"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.1",
"semantic-release": "^17.4.3",
"husky": "^6.0.0",
"jest": "^26.6.3",
"nock": "^13.0.11",
"nodemon": "^2.0.6",
"prettier": "2.2.1",
"smee-client": "^1.2.2",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
}
}