forked from kentaro-m/auto-assign-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "auto-assign-action",
"version": "1.1.2",
"description": "Add reviewers to pull requests when pull requests are opened.",
"repository": {
"type": "git",
"url": "git+https://github.com/kentaro-m/auto-assign-action.git"
},
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"package": "ncc build --source-map --license licenses.txt"
},
"author": "Kentaro Matsushita",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.1.1",
"@actions/github": "^1.1.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.141",
"@types/node": "^12.7.8",
"@vercel/ncc": "^0.24.0",
"husky": "^3.0.8",
"jest": "^26.4.2",
"jest-circus": "^26.4.2",
"prettier": "^1.18.2",
"ts-jest": "^26.3.0",
"typescript": "^3.6.3"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run format && git add ."
}
}
}