-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
33 lines (33 loc) · 955 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
{
"name": "github-workflow-webhook-action",
"version": "0.1.0",
"description": "A GitHub Workflow WebHook",
"author": "Rahul Ravikumar",
"license": "Apache-2.0",
"files": [
"src/**",
"app/**",
"built/**"
],
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"compile": "node_modules/.bin/tsc",
"format": "node_modules/.bin/clang-format -i -style=file --glob=src/**.ts",
"clean": "rm -rf built",
"watch": "node_modules/.bin/tsc --watch &",
"build": "node_modules/.bin/tsc && node_modules/.bin/parcel build src/index.ts --target node --bundle-node-modules --out-file dist/index.js --no-minify"
},
"devDependencies": {
"clang-format": "^1.4.0",
"parcel-bundler": "^1.12.4",
"typescript": "^3.9.5",
"watchify": "^3.11.1"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^3.0.0",
"@types/node": "^14.0.14",
"axios": "^0.19.2"
}
}