-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "versionpatcher",
"version": "1.0.0",
"description": "GitHub Action for patching the version on C# (csproj VS2017+), Node (package.json), Python (setup.py) and others",
"main": "lib/index.js",
"types": "lib/index.t.js",
"files": [
"lib"
],
"scripts": {
"build": "npx tsc && npx ncc build",
"lint": "npx eslint .",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justalemon/VersionPatcher.git"
},
"author": "Hannele \"Lemon\" Ruiz",
"license": "MIT",
"bugs": {
"url": "https://github.com/justalemon/VersionPatcher/issues"
},
"homepage": "https://github.com/justalemon/VersionPatcher#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.5.1",
"@types/jest": "^28.1.8",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^5.6.2"
}
}