-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "node-ivoox",
"version": "1.1.7",
"description": "Unofficial iVoox API for node",
"main": "src/index.js",
"scripts": {
"test-local": "nyc mocha",
"test-server": "nyc node_modules/mocha/bin/_mocha -R tap",
"coveralls-local": "yarn test-local && nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"keywords": [
"ivoox",
"api",
"audio"
],
"author": "Edgar Valencia <isc.edgarvalencia@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "0.23.0",
"cheerio": "0.22.0"
},
"devDependencies": {
"chai": "4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "3.1.1",
"husky": "^6.0.0",
"mocha": "9.0.3",
"nyc": "15.1.0",
"pinst": "^2.1.6",
"standard": "^16.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/EdgarVaguencia/node-ivoox.git"
}
}