-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 923 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 923 Bytes
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
{
"name": "vercel-deploy-action",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**/*.js",
"build": "ncc build src/index.js -o dist",
"format": "prettier --write src/**/*.js",
"all": "npm run format && npm run lint && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"common-tags": "^1.8.0",
"vercel": "20.1.1",
"@octokit/webhooks": "latest"
},
"devDependencies": {
"@zeit/ncc": "^0.22.1",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.0.1",
"prettier": "^1.19.1"
}
}