-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
41 lines (41 loc) · 1.47 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
{
"name": "dx-automator",
"version": "1.0.0",
"description": "This tool is intended to help make managing multiple Github repositories much easier for DX, DevRel, and Open Source Engineering teams.",
"scripts": {
"build": "tsc",
"format": "prettier --write 'actions/**/*.ts'",
"format-check": "prettier --check 'actions/**/*.ts'",
"lint": "eslint actions/**/*.ts",
"package-release": "ncc build lib/actions/release --license licenses.txt --out actions/release/dist",
"package-datadog-release-metric": "ncc build lib/actions/datadog-release-metric --license licenses.txt --out actions/datadog-release-metric/dist",
"test": "jest",
"all": "npm run format && npm run lint && npm run build && npm test && npm run package-release && npm run package-datadog-release-metric"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sendgrid/dx-automator.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@datadog/datadog-api-client": "^1.0.0",
"@octokit/rest": "^18.12.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^16.11.17",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"@vercel/ncc": "^0.33.1",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"js-yaml": "^4.1.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}