forked from peterkhayes/pitchfinder
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.44 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
54
55
56
57
58
59
{
"name": "node-pitchfinder",
"version": "2.1.0",
"description": "A pitch-detection library for node (using C++ Addon)",
"scripts": {
"clean": "rm -rf ./lib ./build",
"build": "npm run clean && node-gyp configure build && babel src -d lib",
"lint": "standard",
"test": "babel-node spec/support/run.js",
"ci-test": "npm install && npm run lint && npm test",
"prepublish": "npm run lint && npm run build"
},
"license": "GNU v3",
"repository": {
"type": "git",
"url": "git+https://github.com/cristovao-trevisan/node-pitchfinder"
},
"keywords": [
"pitch",
"frequency",
"detector",
"detect",
"detection",
"find",
"YIN",
"AMDF",
"autocorrelation",
"music",
"audio"
],
"author": "Cristóvão Trevisan",
"bugs": {
"url": "https://github.com/cristovao-trevisan/node-pitchfinder/issues"
},
"homepage": "https://github.com/cristovao-trevisan/node-pitchfinder#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^7.17.0",
"jasmine": "^3.6.3",
"jasmine-console-reporter": "^3.1.0",
"standard": "^16.0.3",
"wave-generator": "^0.1.1"
},
"dependencies": {
"nan": "^2.14.2",
"node-gyp": "^7.1.2"
},
"standard": {
"parser": "babel-eslint",
"env": "jasmine",
"ignore": [
"build",
"lib"
]
}
}