-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 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
54
55
{
"$schema": "https://json.schemastore.org/package.json",
"name": "bark-github-action",
"version": "1.0.1",
"description": "GitHub Action for sending notifications to Bark",
"private": true,
"main": "lib/src/index.js",
"files": [
"lib/**/*"
],
"types": "lib/src/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"package": "ncc build lib/index.js --source-map --license licenses.txt --minify"
},
"repository": "https://github.com/skyhancloud/bark.js.git",
"bugs": {
"url": "https://github.com/skyhancloud/bark.js/issues"
},
"license": "GPL-3.0-only",
"keywords": [
"actions",
"node",
"setup"
],
"homepage": "https://github.com/skyhancloud/bark.js#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.12.0",
"eslint-plugin-security": "^3.0.1",
"globals": "^15.12.0",
"husky": "^9.1.6",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@thiskyhan/bark.js": "^3.0.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}