-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "pushnotifier-send-github-action",
"version": "1.0.0",
"description": "A GitHub Action to send notifications using PushNotifier",
"main": "index.ts",
"scripts": {
"run:dev": "npx ts-node src/index.ts",
"build:dev": "npm install && ncc build src/index.ts -o dist",
"build:production": "npm run-script build:dev && npm prune --production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluefirex/pushnotifier-send-action.git"
},
"keywords": [
"pushnotifier",
"github",
"action"
],
"author": "bluefirex <git@bfx.re>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bluefirex/pushnotifier-send-action/issues"
},
"homepage": "https://github.com/bluefirex/pushnotifier-send-action#readme",
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"axios": "^0.21.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@types/node": "^15.12.2",
"@zeit/ncc": "^0.22.3",
"typescript": "^4.3.2"
}
}