-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
40 lines (40 loc) · 1007 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
39
40
{
"name": "billboard-top-100",
"version": "2.6.5",
"description": "Gets the top songs, albums, and artists from Billboard's charts",
"main": "billboard-top-100.js",
"directories": {
"test": "test"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"moment": "^2.24.0",
"request": "^2.88.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"mocha": "^9.2.0"
},
"scripts": {
"lint": "eslint billboard-top-100.js test/test.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darthbatman/billboard-top-100.git"
},
"keywords": [
"billboard",
"charts",
"songs",
"music"
],
"author": "Rishi Masand <masandrishi@gmail.com> (https://github.com/darthbatman)",
"license": "MIT",
"bugs": {
"url": "https://github.com/darthbatman/billboard-top-100/issues"
},
"homepage": "https://github.com/darthbatman/billboard-top-100#readme"
}