-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.18 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
{
"name": "merge-bump-release",
"version": "0.0.1",
"description": "GitHub Action to bump SemVer and then create a Release ",
"main": "index.js",
"repository": "[email protected]:amiiit/merge-bump-release.git",
"author": "Amit Jakubowicz <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "yarn inline-queries; yarn bundle",
"inline-queries": "rollup --config ./rollup.config.js ./src/index.ts --file dist/interrim-index.js --format cjs",
"bundle": "ncc build dist/interrim-index.js; rm dist/interrim-index.js",
"dev": "",
"codegen": "apollo client:codegen gen/queries.d.ts",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@octokit/graphql": "^4.8.0",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.23",
"@vercel/ncc": "^0.33.3",
"jest": "^28.1.0",
"rollup": "^2.72.1",
"rollup-plugin-inline-code": "^1.2.7",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
}
}