-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
22 lines (22 loc) · 846 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "docker-compose-deploy",
"version": "1.0.31",
"description": "Quickly and easily deploy Docker Compose projects to your CentOS machine with minimal effort.\r > This project is experimental and may very likely not work as expected. Use at your own risk.",
"main": "dist/index.js",
"scripts": {
"preversion": "npm run build && git add dist/** node_modules/** && git commit -m \"compile package\" & exit 0",
"build": "tsc",
"postversion": "git push && git push --tags",
"watch": "ncc build -w src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jørgen <[email protected]> (https://github.com/JorgenVatle)",
"license": "ISC",
"devDependencies": {
"@types/node": "^13.7.4",
"typescript": "^3.7.5"
},
"dependencies": {
"@actions/core": "^1.2.6"
}
}