-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "ntfy-action",
"version": "1.0.4",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test && npm run beautify",
"beautify": "js-beautify src/index.js -r -q && js-beautify dist/index.js -r -q && js-beautify dist/sourcemap-register.js -r -q"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NiNiyas/ntfy-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"ntfy"
],
"author": "NiNiyas",
"license": "MIT",
"bugs": {
"url": "https://github.com/NiNiyas/ntfy-action/issues"
},
"homepage": "https://github.com/NiNiyas/ntfy-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"axios": "^1.7.7",
"playwright": "^1.48.0",
"form-data": "^4.0.1"
},
"devDependencies": {
"js-beautify": "^1.15.1",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.12.0",
"jest": "^29.7.0"
}
}