Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioCrisostomo committed Jul 21, 2020
0 parents commit 920ce9f
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
.DS_Store
dev/media/output/*
21 changes: 21 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "node-audio-server",
"description": "Audio server for Node.js with client integration"
"version": "0.0.1",
"main": "index.js",
"scripts": {
"test": "mocha --recursive \"./src/**/test/*.js\"",
"test-watch": "mocha --recursive \"./src/**/test/*.js\" --watch",
"start": "node server.js"
},
"author": "Sérgio Crisóstomo",
"license": "ISC",
"dependencies": {
"wavefile": "^11.0.0"
},
"devDependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"prettier": "^2.0.5"
},
}

0 comments on commit 920ce9f

Please sign in to comment.