-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 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
44
45
46
{
"author": "Jurriaan H. Spaaks",
"bugs": {
"url": "https://github.com/zenodraft/action/issues"
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@octokit/webhooks-definitions": "^3.67.3",
"js-yaml": "^4.1.0",
"typescript": "^4.3.2",
"zenodraft": "0.13.3"
},
"description": "GitHub action to automate making draft depositions on Zenodo or Zenodo Sandbox",
"homepage": "https://github.com/zenodraft/action#readme",
"keywords": [
"zenodo",
"releases",
"archiving",
"deposition",
"github actions"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"name": "action",
"repository": {
"type": "git",
"url": "git+https://github.com/zenodraft/action.git"
},
"scripts": {
"all": "npm run clean && npm run transpile",
"clean": "rm -rf lib/*",
"test": "jest --config jest.config.js",
"transpile": "tsc -p tsconfig.json",
"deps": "echo '\nupdating dependencies for production\n' && rm -rf node_modules && npm install --production && git add node_modules --force && git status"
},
"version": "0.13.3",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@types/node": "^20.11.10",
"jest": "^27.0.5",
"ts-jest": "^27.0.3"
}
}