forked from tibdex/autosquash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.38 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": "autosquash",
"version": "2.1.1",
"license": "MIT",
"files": [
"action.yml",
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts --minify --v8-cache",
"check-prettier": "yarn run prettier --check",
"eslint": "eslint --ignore-path .gitignore --max-warnings 0 \"./**/*.{js,ts}\"",
"format-prettier": "yarn run prettier --write",
"prettier": "prettier --ignore-path .gitignore \"./**/*.{js,json,md,ts,yml}\"",
"test": "jest"
},
"devDependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1",
"@octokit/rest": "^16.43.1",
"@octokit/webhooks": "^7.1.2",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/promise-retry": "^1.1.3",
"@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",
"eslint-config-xo": "^0.29.1",
"eslint-config-xo-typescript": "~0.19.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-sort-destructure-keys": "^1.3.3",
"eslint-plugin-typescript-sort-keys": "^0.8.0",
"eslint-plugin-unicorn": "^18.0.1",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"promise-retry": "^1.1.1",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
}
}