-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 918 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": "audio-analyser-cli",
"version": "1.0.1",
"description": "The frequency or waveform data of audio analyser in command based on Puppeteer.js",
"scripts": {
"test": "ava test/**/*.test.js --serial",
"coverage": "nyc npm test report"
},
"preferGlobal": true,
"bin": {
"audio-analyse": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inarol/audio-analyser-cli.git"
},
"keywords": [
"analyser",
"audio"
],
"author": "narol",
"license": "MIT",
"bugs": {
"url": "https://github.com/inarol/audio-analyser-cli/issues"
},
"homepage": "https://github.com/inarol/audio-analyser-cli#readme",
"dependencies": {
"cli-color": "^1.4.0",
"puppeteer": "^1.11.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"ava": "^1.1.0",
"command-line-test": "^1.0.10",
"coveralls": "^3.0.2",
"nyc": "^13.1.0"
}
}