-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 746 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 746 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
28
29
30
31
32
33
{
"name": "node-vad",
"author": {
"name": "Snirpo"
},
"description": "Voice Activity Detection library for Node",
"version": "1.1.4",
"scripts": {
"install": "node-gyp rebuild",
"release-patch": "npm version patch && npm publish",
"release-minor": "npm version minor && npm publish",
"release-major": "npm version major && npm publish"
},
"main": "./index.js",
"license": "MIT",
"engines": {
"node": ">=6.14.3",
"npm": ">=2.11.1"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0",
"util-promisifyall": "^1.0.6"
},
"gypfile": true,
"maintainers": [
{
"name": "snirpo",
"email": "snirpo@gmail.com"
}
],
"repository": "github:snirpo/node-vad"
}