forked from peterkhayes/pitchfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.05 KB
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
38
39
40
41
42
43
44
45
{
"name": "pitchfinder",
"version": "2.0.4",
"description": "A pitch-detection library for node and the browser",
"scripts": {
"build": "rm -rf ./lib && mkdir lib && babel src -d lib",
"lint": "eslint ./src",
"test": "mocha",
"ci-test": "npm install && npm run lint && npm test",
"prepublish": "npm run lint && npm test && npm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterkhayes/pitchfinder.git"
},
"keywords": [
"pitch",
"frequency",
"detector",
"detect",
"detection",
"find",
"YIN",
"AMDF",
"autocorrelation",
"music",
"audio"
],
"author": "Peter Hayes",
"license": "GNU v3",
"bugs": {
"url": "https://github.com/peterkhayes/pitchfinder/issues"
},
"homepage": "https://github.com/peterkhayes/pitchfinder#readme",
"devDependencies": {
"babel": "^5.8.20",
"babel-eslint": "^6.0.2",
"eslint": "^2.7.0",
"expect": "^1.16.0",
"mocha": "^2.4.5",
"mz": "^2.4.0",
"wav": "^1.0.0",
"wav-decoder": "^1.1.0"
}
}