Skip to content

Commit c2520cb

Browse files
author
Brian Genisio
committed
Adding package.json
1 parent de5984b commit c2520cb

File tree

4 files changed

+63
-1
lines changed

4 files changed

+63
-1
lines changed

.github/workflows/build-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache: 'npm'
2323

2424
- name: Install dependencies
25-
run: npm install ws
25+
run: npm install
2626

2727
- name: Archive build output
2828
run: tar -czf dist.tar.gz *

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
answers.json
2+
node_modules/

package-lock.json

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "learn_quiz-task",
3+
"version": "1.0.0",
4+
"description": "A quiz engine for Learn",
5+
"homepage": "https://github.com/CodeSignal/learn_quiz-task#readme",
6+
"bugs": {
7+
"url": "https://github.com/CodeSignal/learn_quiz-task/issues"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/CodeSignal/learn_quiz-task.git"
12+
},
13+
"license": "ISC",
14+
"author": "CodeSignal",
15+
"type": "commonjs",
16+
"main": "server.js",
17+
"scripts": {
18+
"test": "echo \"Error: no test specified\" && exit 1",
19+
"start": "node server.js"
20+
},
21+
"dependencies": {
22+
"ws": "^8.18.3"
23+
}
24+
}

0 commit comments

Comments
 (0)