This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.48 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
{
"name": "dependent-issues",
"version": "0.0.0-development",
"private": true,
"main": "lib/action.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"prepackage": "rimraf -rf dist && rimraf -rf lib && yarn build",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --passWithNoTests",
"postinstall": "husky install",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/z0al/dependent-issues.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"@octokit/rest": "18.12.0",
"dequal": "^2.0.2",
"issue-regex": "^3.1.0",
"lodash.uniqby": "^4.7.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash.uniqby": "^4.7.7",
"@types/node": "^17.0.43",
"@typescript-eslint/parser": "^5.30.5",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.7",
"ts-jest": "^27.1.4",
"typescript": "^4.7.4"
},
"prettier": {
"printWidth": 72,
"useTabs": true,
"singleQuote": true
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}