-
Notifications
You must be signed in to change notification settings - Fork 391
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 726 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 726 Bytes
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
{
"name": "nodejs-app",
"version": "1.0.0",
"description": "Github Actions 연습을 위한 node.js 예제 프로그램",
"main": "app.js",
"scripts": {
"test": "mocha app.test.js",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stelladream/github-actions-nodejs.git"
},
"keywords": [
"node.js",
"web",
"application"
],
"author": "Namyun Kim",
"license": "GPLV3",
"bugs": {
"url": "https://github.com/stelladream/github-actions-nodejs/issues"
},
"homepage": "https://github.com/stelladream/github-actions-nodejs#readme",
"devDependencies": {
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"mocha": "^10.2.0"
}
}