-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "pitchfinder",
"version": "2.3.2",
"description": "A pitch-detection library for node and the browser",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint ./src/**/*.ts",
"test": "mocha",
"ci-test": "yarn && yarn lint && yarn test",
"prepublish": "yarn lint && yarn test && yarn 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": {
"@types/mocha": "^7.0.2",
"@types/mz": "^2.7.0",
"@types/node": "^13.13.4",
"eslint": "^6.8.0",
"eslint-config-peterkhayes": "^2.2.0",
"eslint-plugin-prettier": "^3.1.3",
"expect": "^26.0.1",
"mocha": "^7.1.2",
"mz": "^2.4.0",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"wav": "^1.0.0",
"wav-decoder": "^1.1.0"
}
}