-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.58 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
{
"name": "zulipbot-action",
"version": "1.0.0",
"description": "GitHub workflow-optimizing action built by Zulip",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"build-commands-action": "tsc && ncc build lib/commands-action -o commands-action/dist --license licenses.txt",
"build-areas-action": "tsc && ncc build lib/areas-action -o areas-action/dist --license licenses.txt",
"build-activity-action": "tsc && ncc build lib/activity-action -o activity-action/dist --license licenses.txt",
"build-pulls-action": "tsc && ncc build lib/pulls-action -o pulls-action/dist --license licenses.txt",
"format": "prettier --write **/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garg3133/zulipbot-action.git"
},
"keywords": [],
"author": "Priyansh Garg (garg3133)",
"license": "ISC",
"bugs": {
"url": "https://github.com/garg3133/zulipbot-action/issues"
},
"homepage": "https://github.com/garg3133/zulipbot-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"adm-zip": "^0.5.5",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@octokit/plugin-rest-endpoint-methods": "^4.10.1",
"@octokit/webhooks-types": "^3.75.2",
"@types/adm-zip": "^0.4.34",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@vercel/ncc": "^0.27.0",
"jest": "^27.0.4",
"prettier": "^2.3.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}