-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.45 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.45 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "taq-github-bot",
"version": "1.4.0",
"description": "Taqtile's Github bot",
"author": "Taqtile",
"license": "ISC",
"repository": "https://github.com/taqtile/taq-github-bot.git",
"homepage": "https://github.com/taqtile/taq-github-bot",
"bugs": "https://github.com/taqtile/taq-github-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "npm run clean-dist && tsc && npm run copy-resources",
"clean-dist": "rm -rf ./dist",
"copy-resources": "copyup -e 'src/test/**' 'src/**/*.{html,jpg,jpeg,png,css,json,wsdl,md}' 'dist/'",
"create-github-repo": "ts-node scripts/create-github-repo.ts",
"start": "probot run ./dist/index.js",
"dev": "tsc-watch --onSuccess \"npm run start\" ",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "eslint --ext .js,.ts src --fix",
"reinstall": "rm -rf ./node_modules || true && npm install",
"test": "npm run build && mocha -r ts-node/register -r tsconfig-paths/register 'src/**/*.test.ts' --exit",
"simulate:installation": "./node_modules/.bin/probot receive -e installation -p ./src/__test__/webhook-simulations/installation.payload.json -t any ./dist/index.js",
"simulate:comment-finish": "./node_modules/.bin/probot receive -e issue_comment -p ./src/__test__/webhook-simulations/comment-finish.payload.json -t any ./dist/index.js",
"gcp-build": "npm run build"
},
"dependencies": {
"@google-cloud/firestore": "7.9.0",
"dotenv": "10.0.0",
"module-alias": "2.2.2",
"probot": "11.4.1",
"reflect-metadata": "0.1.13",
"typedi": "0.10.0"
},
"devDependencies": {
"@types/chai": "4.3.3",
"@types/faker": "4.1.12",
"@types/mocha": "9.1.1",
"@types/node": "16.11.59",
"@types/sinon": "10.0.13",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"chai": "4.3.6",
"copyfiles": "2.4.1",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"faker": "5.5.3",
"mocha": "10.0.0",
"nock": "13.5.4",
"prettier": "2.5.1",
"sinon": "14.0.0",
"smee-client": "1.2.3",
"ts-node": "10.9.1",
"tsc-watch": "5.0.3",
"tsconfig-paths": "3.12.0",
"typescript": "5.5.4"
},
"engines": {
"node": "20.18.1",
"npm": ">=10"
},
"_moduleAliases": {
"@core": "dist/core",
"@data": "dist/data",
"@domain": "dist/domain",
"@presentation": "dist/presentation"
}
}