-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 994 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
36
37
{
"name": "eod-actions",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf action && ncc build src/actions.js -o action",
"start": "babel-node src/actions.js",
"deploy": "cd src && zip -r -D test.zip ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmsteven/eod-actions.git"
},
"author": "Benedict Steven",
"license": "ISC",
"bugs": {
"url": "https://github.com/bmsteven/eod-actions/issues"
},
"homepage": "https://github.com/bmsteven/eod-actions#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"@babel/polyfill": "7.11.5",
"@octokit/core": "^3.6.0",
"@vercel/ncc": "0.33.1",
"axios": "^0.26.1"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/node": "7.10.5",
"@babel/preset-env": "7.11.5",
"eslint": "7.9.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0"
}
}