-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 893 Bytes
/
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
{
"name": "slack-action",
"version": "1.0.0",
"description": "Send fully custom slack messages",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"package": "ncc build --source-map --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brymastr/slack-action.git"
},
"keywords": [],
"author": "Brycen Dorsay <dorsay@live.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brymastr/slack-action/issues"
},
"homepage": "https://github.com/brymastr/slack-action#readme",
"dependencies": {
"@actions/core": "1.9.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"@vercel/ncc": "^0.28.5",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}