-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.49 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
60
61
62
63
{
"name": "node-libsamplerate",
"version": "1.0.0",
"description": "Native bindings for libsamplerate",
"main": "index.js",
"license": "MIT",
"keywords": [
"libsamplerate",
"samplerate",
"audio",
"sample",
"rate",
"convert",
"resample",
"downsample",
"upsample",
"n-api",
"node-addon-api",
"cmake-js",
"S16_LE",
"S32_LE",
"pcm",
"wav"
],
"scripts": {
"install": "cmake-js compile",
"test": "nyc mocha test/*.test.js",
"build:dev": "cmake-js build --debug",
"build": "cmake-js build",
"rebuild:dev": "cmake-js rebuild --debug",
"rebuild": "cmake-js rebuild",
"clean": "node-gyp clean"
},
"dependencies": {
"bindings": "^1.3.0",
"cmake-js": "^4.0.0",
"node-addon-api": "^1.4.0"
},
"engines": {
"node": ">=8.0.0"
},
"repository": "github:dmooney65/node-libsamplerate",
"bugs": {
"url": "https://github.com/dmooney65/node-libsamplerate/issues"
},
"homepage": "https://github.com/dmooney65/node-libsamplerate#readme",
"devDependencies": {
"audio-generator": "^2.1.2",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"sinon": "^6.3.3"
},
"nyc": {
"extension": [
".js"
],
"exclude": [
"example.js",
"waveheader.js",
"test/*.js"
]
}
}