forked from Streampunk/naudiodon
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 972 Bytes
/
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
{
"name": "node-portaudio",
"version": "0.4.10",
"description": "Node Stream bindings for PortAudio.",
"main": "./index.js",
"keywords": [
"portaudio",
"audio",
"play",
"record",
"wav"
],
"bugs": {
"url": "https://github.com/auroraapi/node-portaudio/issues"
},
"repository": "git+https://github.com/auroraapi/node-portaudio.git",
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.10.0"
},
"devDependencies": {
"@types/bindings": "^1.3.0",
"@types/node": "^8.5.0",
"tape": "^4.9.0",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"author": "Aurora API",
"license": "MIT",
"scripts": {
"prepublish": "yarn build",
"install": "node-gyp rebuild",
"build": "rm -rf index.js index.d.ts && tsc --pretty --declaration",
"lint": "tslint -c tslint.json -p tsconfig.json -e node_modules --fix",
"clean": "rm -rf index.js index.d.ts build yarn-error.log"
},
"gypfile": true
}