forked from amondnet/vercel-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "now-deployment",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/amondnet/now-deployment"
},
"author": {
"name": "Minsu Lee",
"email": "amond@amond.net",
"url": "https://amond.dev"
},
"version": "19.0.1+2",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"start": "node ./index.js",
"package": "ncc build index.js -o dist",
"test": "jest",
"format": "prettier --write index.js",
"format-check": "prettier --check index.js",
"all": "npm run format && npm run lint && npm run package && npm test"
},
"dependencies": {
"@actions/core": "^1.2.2",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"axios": "~0.18.1",
"common-tags": "^1.8.0",
"vercel": "19.0.1",
"@octokit/webhooks": "latest"
},
"devDependencies": {
"@zeit/ncc": "^0.22.1",
"prettier": "1.19.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.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.0",
"jest": "^26.0.1"
},
"engines": {
"node": "v12"
},
"keywords": [
"GitHub",
"Actions",
"Vercel",
"Zeit",
"Now"
]
}