forked from vj-abigo/invite-on-label
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "invite-on-label",
"version": "1.0.0",
"description": "Automate organization invitation based on the label",
"main": "index.js",
"scripts": {
"build": "ncc build index.js",
"prettier": "prettier \"*.{js,json}\"",
"format": "npm run prettier -- --write",
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"validate": "npm run prettier -- --list-different && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vj-abishek/invite-on-label.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vj-abishek/invite-on-label/issues"
},
"homepage": "https://github.com/vj-abishek/invite-on-label#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^5.0.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}