forked from Klemensas/action-autotag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "autotag-action",
"version": "1.2.3",
"private": true,
"description": "Automatically create a tag whenever the version changes in package.json",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"all": "npm run build && npm run format && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rbkmoney/action-autotag.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/ramda": "^0.27.30",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vercel/ncc": "^0.25.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-github": "^4.3.5",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"ts-jest": "^26.4.4",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
}
}