-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
39 lines (39 loc) · 962 Bytes
/
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
{
"name": "argo-bot",
"version": "0.0.0",
"description": "Simple Argo but to comment with diffs on PR",
"repository": "https://github.com/marcb1/argocd-bot.git",
"licenses": [
{
"type": "Apache",
"url": "https://raw.github.com/turtl/desktop/master/LICENSE"
}
],
"scripts": {
"build": "tslint src/**/*.ts{,x} && tsc && cp -r ./src/sh ./lib/",
"test": "jest ./test/",
"start": "probot run ./lib/index.js",
"manifests": "kustomize build ./deployment/base > deployment/install.yaml"
},
"dependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"node-fetch": "^2.3.0",
"probot": "^7.5.1",
"probot-config": "^1.0.1",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.3"
},
"devDependencies": {
"jest": "^24.5.0",
"nock": "^10.0.6",
"sinon": "^7.2.7"
},
"engines": {
"node": "8"
},
"jest": {
"testEnvironment": "node"
}
}