forked from kentaro-m/qr-code-commenter-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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": "qr-code-commenter-action",
"version": "0.1.2",
"description": "A GitHub Action that posts a QR code to a pull request comment.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test -- --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kentaro-m/qr-code-commenter-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "kentaro-m",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.3",
"qrcode": "^1.5.1"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.4.1",
"@types/qrcode": "^1.4.4",
"@typescript-eslint/parser": "^5.59.11",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.45.0",
"eslint-plugin-github": "^4.9.0",
"eslint-plugin-jest": "^27.2.0",
"jest": "^29.6.0",
"jest-circus": "^29.6.0",
"js-yaml": "^4.1.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6"
}
}