-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 833 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
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "BeatDetection",
"version": "1.0.0",
"description": "Identify the beat per minute of a song.",
"main": "app.coffee",
"scripts": {
"start": "coffee -w app.coffee",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]:agyorev/BeatDetection.git"
},
"keywords": [
"webaudio",
"api",
"beat",
"detection",
"beats",
"per",
"minute",
"coffeescript"
],
"author": "Aleksandar Gyorev",
"license": "MIT",
"bugs": {
"url": "https://github.com/agyorev/BeatDetection/issues"
},
"homepage": "https://github.com/agyorev/BeatDetection",
"dependencies": {
"body-parser": "^1.12.4",
"cheerio": "^0.19.0",
"coffee-script": "^1.9.2",
"express": "^4.12.4",
"request": "^2.55.0"
}
}