-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "github-action-todos-to-issue",
"version": "1.1.2",
"description": "It scans your source code looking for TODO comments and creates an issue with them",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "tap --node-arg=\"--loader=esmock\"",
"prepare": "husky",
"build": "ncc build src --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform-actions/github-action-todos-to-issue.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nearform-actions/github-action-todos-to-issue/issues"
},
"homepage": "https://github.com/nearform-actions/github-action-todos-to-issue#readme",
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^4.2.1",
"esmock": "^2.7.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^2.8.8",
"tap": "^16.3.8"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"actions-toolkit": "github:nearform/actions-toolkit",
"ejs": "^3.1.10",
"encoding": "^0.1.13"
}
}