-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
{
"name": "autorebase",
"version": "0.1.10",
"description": "",
"main": "src/index.ts",
"files": [
"action.yml",
"dist"
],
"scripts": {
"build": "ncc build src/index.ts --minify --v8-cache",
"test": "yarn lint && jest",
"test:watch": "jest --watch",
"lint": "eslint --ext js,ts,tsx src",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md,graphl}\" --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Label305/MyFirstGithubAction.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Label305/MyFirstGithubAction/issues"
},
"homepage": "https://github.com/Label305/MyFirstGithubAction#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^2.2.0",
"@octokit/types": "^4.1.5",
"@octokit/webhooks": "^7.6.2",
"@zeit/ncc": "^0.22.3",
"github-rebase": "^1.1.0",
"typescript": "^3.9.3"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-each": "^26.0.1",
"lint-staged": "^10.2.8",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix --ext js,ts,tsx src"
],
"*.{json,css,scss,md,graphl,js,jsx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}