-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.4 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
56
57
{
"name": "pushoo-action",
"version": "0.1.9",
"description": "A GitHub Action with Pushoo.js pushes multiple platform messages.",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "ncc build src/main.ts --source-map --minify --license LICENSE",
"prepare": "patch-package",
"lint": "eslint src/**/*.ts",
"format": "eslint --fix src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/funnyzak/pushoo-action.git"
},
"keywords": [
"actions",
"push",
"pushoo.js",
"github-action",
"push-message"
],
"author": "funnyzak",
"contributors": [
{
"name": "funnyzak",
"url": "https://yycc.dev"
}
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"csv-parse": "^5.3.6",
"handlebars": "^4.7.7",
"patch-package": "^6.5.1",
"pushoo": "0.1.4",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/node": "^18.15.10",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}