-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "setup-renpy",
"version": "2.0.1",
"private": true,
"description": "Setup renpy action",
"author": "Ayowel",
"license": "MIT",
"main": "dist/setup/index.js",
"scripts": {
"build": "ncc build -o dist/setup src/setup-renpy.ts",
"format": "prettier --write \"{,!(node_modules)/**/}*.ts\"",
"format-check": "prettier --check \"{,!(node_modules)/**/}*.ts\"",
"lint": "echo \"Fake command that does nothing. It is used in reusable workflows\"",
"prerelease": "npm run-script build",
"release": "git add -f dist/setup/index.js dist/cleanup/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayowel/renpy-action-setup.git"
},
"keywords": [
"actions",
"renpy",
"setup"
],
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/http-client": "^2.1.0",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.7",
"@vercel/ncc": "^0.36.1",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
}
}