forked from JosephDuffy/wait-for-netlify-action
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.64 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
58
59
60
61
62
{
"name": "wait-for-netlify-action",
"version": "0.0.0-development",
"private": true,
"description": "A GitHub action that waits for a Netlify deployment preview for the current commit being built",
"main": "dist/index.js",
"scripts": {
"build": "ncc build -o dist index.js",
"lint": "eslint --cache --fix index.js",
"format": "prettier --write index.js"
},
"keywords": [
"github-action",
"github",
"netlify"
],
"author": {
"name": "Kamran Ayub",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^4.0.0",
"axios": "0.19.2"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5",
"semantic-release": "^17.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run build && git add dist",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"./*.js": "eslint --cache --fix",
"*.md": "prettier --write"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git"
]
}
}