-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 736 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 736 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
{
"name": "web-pitch",
"version": "0.0.1",
"description": "Webapp to monitor pitch while recording your voice and compare it to a reference track",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch & python3 -m http.server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MJochim/web-pitch.git"
},
"author": "Markus Jochim",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/MJochim/web-pitch/issues"
},
"homepage": "https://github.com/MJochim/web-pitch#readme",
"dependencies": {
"pitchfinder": "^2.0.9"
},
"devDependencies": {
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0"
}
}