-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "comment-on-task-github-action",
"version": "1.0.0",
"description": "This action allows you to create a comment in Asana task.",
"main": "src/index.ts",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"test": "jest",
"lint": "eslint src/**/*.ts --fix",
"package": "ncc build --source-map --license licenses.txt",
"test:coverage": "jest --collectCoverage=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Asana/comment-on-task-github-action.git"
},
"keywords": [],
"author": "Asana",
"license": "MIT",
"bugs": {
"url": "https://github.com/Asana/comment-on-task-github-action/issues"
},
"homepage": "https://github.com/Asana/comment-on-task-github-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.0",
"axios": "^0.21.4",
"axios-retry": "^3.1.9"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.2.0",
"eslint-plugin-jest": "^24.4.0",
"husky": "^7.0.2",
"jest": "^27.2.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}