-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.58 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@thesusheer/node-miniaudio",
"version": "1.0.1",
"private": false,
"description": "Lightweight and fast Node.js addon for playing notification sounds, beeps, and alarms using MiniAudio.",
"main": "./lib/index.js",
"types": "types/index.d.ts",
"homepage": "https://github.com/Susheer/node-miniaudio",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"rebuild": "node-gyp rebuild",
"npm-publish":"npm publish",
"test": "node --test test/"
},
"gypfile": false,
"dependencies": {
"node-addon-api": "^8.1.0"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-node-gyp": "^5.0.0",
"grunt-shell": "^4.0.0",
"node-gyp": "^11.2.0",
"node-pre-gyp": "^0.17.0",
"node-pre-gyp-github": "github:Susheer/node-pre-gyp-github"
},
"contributors": [
"Sudheer Gupta <sudheergupta0508@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/Susheer/node-miniaudio.git"
},
"binary": {
"module_name": "node-miniaudio",
"module_path": "./lib/",
"host": "https://github.com/Susheer/node-miniaudio/releases/download/",
"remote_path": "v{version}"
},
"keywords": [
"nodejs",
"miniaudio",
"audio",
"sound",
"beep",
"notification",
"alarm",
"low-latency",
"cross-platform",
"embedded"
],
"author": {
"name": "Sudheer gupta",
"url": "https://github.com/Susheer",
"email": "sudheergupta0508@gmail.com"
},
"licenses": [
{
"type": "BSD"
}
]
}