-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.06 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "manage-collaborators-action",
"version": "1.0.0",
"description": "Action to add users as collaborators of repositories",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"release": "npm run build && npm run package",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/gateixeira/manage-collaborators-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Guilherme Teixeira (@gateixeira)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.2.0",
"@types/node": "^16.10.5",
"@typescript-eslint/parser": "^5.42.0",
"@vercel/ncc": "^0.31.1",
"commitlint": "^17.2.0",
"eslint": "^8.27.0",
"eslint-plugin-github": "^4.4.1",
"eslint-plugin-jest": "^27.1.4",
"husky": "^8.0.1",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "2.7.1",
"semantic-release": "^19.0.5",
"ts-jest": "^27.1.2",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/gateixeira/manage-collaborators-action/issues"
},
"homepage": "https://github.com/gateixeira/manage-collaborators-action#readme",
"directories": {
"lib": "lib"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write"
],
"*.ts": [
"eslint --cache --fix"
]
},
"release": {
"branches": [
"main"
]
}
}