-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
47
48
49
50
51
52
{
"name": "add-commit-labels",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "[email protected]:dlavrenuek/add-commit-labels.git",
"author": "Dimitri Lavrenük <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dlavrenuek/add-commit-labels/issues"
},
"homepage": "https://github.com/dlavrenuek/add-commit-labels#readme",
"scripts": {
"format": "prettier --write .",
"test": "yarn test:format && yarn test:lint && yarn test:unit",
"test:format": "prettier --check .",
"test:lint": "eslint src/**/*.ts",
"test:unit": "jest",
"build": "yarn build:clean && yarn build:compile",
"build:clean": "rm dist/* || :",
"build:compile": "ncc build src/index.ts -o dist --license licenses.txt"
},
"keywords": [
"GitHub",
"Actions",
"TypeScript",
"JavaScript"
],
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@octokit/graphql": "8.2.0",
"@octokit/rest": "21.1.0",
"p-limit": "4.0.0",
"simple-git": "3.27.0"
},
"devDependencies": {
"@babel/core": "7.26.8",
"@babel/preset-env": "7.26.8",
"@babel/preset-typescript": "7.26.0",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vercel/ncc": "0.38.3",
"babel-jest": "29.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.3",
"jest": "29.7.0",
"prettier": "3.4.2",
"typescript": "5.7.3"
}
}