-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 KB
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
51
52
53
{
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"all": "npm run build && npm run format && npm run lint && npm test",
"ci": "npm run build && npm run format-check && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobyhs/codemention.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"handlebars": "^4.7.9",
"js-yaml": "^4.1.1",
"markdown-escape": "^2.0.0",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@octokit/webhooks-types": "^7.0.2",
"@types/js-yaml": "^4.0.5",
"@types/markdown-escape": "^1.1.3",
"@types/micromatch": "^4.0.2",
"@types/node": "^20.17.22",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"jest": "^30.1.3",
"jest-mock-extended": "^4.0.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.9.2"
}
}