-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "backport-action",
"version": "3.2.0-SNAPSHOT",
"private": false,
"description": "GitHub action to automatically backport pull requests",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"**.ts\"",
"format-check": "prettier --check \"**.ts\"",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --silent",
"test-verbose": "jest",
"all": "npm run format && npm run build && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/korthout/backport-action.git"
},
"keywords": [
"actions",
"backport"
],
"author": "korthout",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/dedent": "^0.7.2",
"dedent": "^1.5.3",
"execa": "^7.2.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@vercel/ncc": "^0.38.1",
"jest": "^27.5.1",
"prettier": "3.3.3",
"ts-jest": "^27.1.2",
"typescript": "^4.9.5"
}
}