-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.29 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
{
"name": "dependabot-automerge-action",
"version": "1.0.2",
"private": true,
"description": "Automagically approve dependabot pr",
"author": "Mattia Dapino <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mitto98/dependabot-automerge-action.git"
},
"keywords": [
"github",
"github actions",
"nodejs",
"typescript",
"dependencies",
"dependabot",
"security"
],
"main": "dist/index.js",
"scripts": {
"build:dev": "tsc",
"build": "ncc build src/index.ts -C -m -s --license licenses.txt",
"test": "jest",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.5.0",
"@types/semver": "^7.3.9",
"@vercel/ncc": "^0.36.1",
"jest": "^27.5.1",
"semantic-release": "^20.1.3",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^4.0.0",
"semver": "^7.3.7"
},
"jest": {
"roots": [
"<rootDir>/src/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"automock": false
}
}