forked from RedKenrok/node-audiorecorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
{
"author": {
"name": "Ron Dekker",
"url": "https://rondekker.nl"
},
"name": "node-audiorecorder",
"version": "2.0.1",
"description": "Record audio via node using SoX or Arecord.",
"license": "MIT",
"keywords": [
"audio",
"recording",
"sox",
"rec",
"arecord",
"wav",
"wave"
],
"homepage": "https://github.com/RedKenrok/node-audiorecorder#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RedKenrok/node-audiorecorder.git"
},
"bugs": {
"url": "https://github.com/RedKenrok/node-audiorecorder/issues"
},
"main": "library/index.js",
"files": [
"library/"
],
"scripts": {
"lint": "eslint library/**.js test/**.js examples/**.js --fix",
"test": "nyc --reporter=text ava test/module.js test/options.js --verbose",
"test-all": "nyc --reporter=text ava test/module.js test/options.js test/extra.js --verbose",
"posttest": "eslint library/**.js test/**.js examples/**.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"devDependencies": {
"ava": "^3.8.1",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"nyc": "^15.0.1"
}
}