-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "github-deployments-buildkite-plugin",
"version": "1.0.0",
"main": "src/index.ts",
"bin": "dist/index.js",
"repository": "git@github.com:wellcomecollection/github-deployments-buildkite-plugin.git",
"license": "MIT",
"scripts": {
"build:ts": "tsc",
"build:pkg": "pkg ./package.json",
"build": "yarn run build:ts && yarn run build:pkg",
"clean": "rimraf dist bin",
"prepare": "husky install",
"dev": "ts-node src/index.ts",
"lint-plugin": "docker-compose -f ./docker-compose.lint.yml run --rm lint"
},
"devDependencies": {
"@types/git-url-parse": "^9.0.1",
"@types/node": "^16.4.7",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"pkg": "^5.3.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@octokit/auth-app": "^3.5.3",
"@octokit/core": "^3.5.1",
"aws-sdk": "^2.957.0",
"git-url-parse": "^11.5.0"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"pkg": {
"scripts": "./dist/**/*.js",
"targets": [
"node14-linux-x64"
],
"outputPath": "bin"
}
}