-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "action-project-manager",
"private": true,
"version": "0.1.0",
"description": "Manage issues in projects",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts"
},
"keywords": [],
"author": "j.cheatham@gmail.com",
"license": "BSD-3-Clause",
"devDependencies": {
"@actions/core": "~1.2.6",
"@actions/github": "~2.1.1",
"@commitlint/cli": "~8.3.5",
"@commitlint/config-conventional": "~8.3.4",
"@octokit/webhooks": "~7.1.0",
"@typescript-eslint/eslint-plugin": "~2.27.0",
"@typescript-eslint/parser": "~2.27.0",
"@zeit/ncc": "~0.22.1",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.10.1",
"husky": "~4.2.5",
"lint-staged": "~10.1.3",
"prettier": "~2.0.4",
"tslib": "~1.11.0",
"typescript": "~3.8.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
],
"tsconfig.json": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}