-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 838 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
23
24
{
"name": "nodejs-cicd-to-localhost",
"version": "1.0.0",
"description": "This is simple demo to show CI/CD working process at the GitHub and also how to deploy application to local host via \"Git Actions\" Most of demo seems to co-work with cloud service like AWS,DigitalOcean, etc.... This is for simple host user",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manulsan/nodejs-cicd-to-localhost.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/manulsan/nodejs-cicd-to-localhost/issues"
},
"homepage": "https://github.com/manulsan/nodejs-cicd-to-localhost#readme",
"dependencies": {
"express": "^4.17.2"
}
}