forked from enriikke/gatsby-gh-pages-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "gatsby-gh-pages-action",
"version": "2.1.1",
"description": "GitHub Action to build and deploy your Gatsby site to GitHub Pages ❤️🎩",
"main": "dist/index.js",
"scripts": {
"build": "tsc --noEmit && ncc build index.ts -o dist -m",
"test": "tsc --noEmit && jest --silent",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enriikke/gatsby-gh-pages-action.git"
},
"keywords": [
"Gatsby",
"GitHub Pages",
"GitHub Actions"
],
"author": "Enrique Gonzalez",
"license": "MIT",
"bugs": {
"url": "https://github.com/enriikke/gatsby-gh-pages-action/issues"
},
"homepage": "https://github.com/enriikke/gatsby-gh-pages-action#readme",
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@actions/io": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"@typescript-eslint/types": "^4.0.0",
"@vercel/ncc": "^0.28.5",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^27.0.0",
"prettier": "^2.0.0",
"ts-jest": "^27.0.0",
"typescript": "^4.0.0"
}
}