-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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
{
"name": "@nzws/blog-at-issue-action",
"version": "1.0.0",
"author": "nzws <[email protected]>",
"main": "./build/index.js",
"license": "MIT",
"repository": "https://github.com/nzws/blog-at-issue-action.git",
"homepage": "https://github.com/nzws/blog-at-issue-action",
"private": true,
"scripts": {
"lint:prettier": "prettier --check --ignore-path .ignore .",
"lint:eslint": "eslint --cache --ignore-path .ignore \"**/*.js\"",
"lint:ts": "tsc",
"lint": "npm-run-all lint:* -s",
"format-all": "prettier --write --ignore-path .ignore .",
"format:prettier": "prettier --write --ignore-path .ignore .",
"format:js": "eslint --cache --fix --ignore-path .ignore \"**/*.js\"",
"format": "npm-run-all format:* -s",
"build:ts": "tsc",
"build:pack": "ncc build build/index.js --minify",
"build": "npm-run-all build:* -s"
},
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/glob": "^0.1.0",
"simple-git": "^2.11.0"
},
"devDependencies": {
"@nzws/prettier-config": "^1.0.0",
"@types/prettier": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@yuzulabo/eslint-config": "^1.0.1",
"@zeit/ncc": "^0.22.3",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "~7.3.1",
"eslint-config-prettier": "^6.11.0",
"npm-run-all": "~4",
"prettier": "^2.0.5",
"typescript": "^3.9.5"
},
"prettier": "@nzws/prettier-config"
}