-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "scrape",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"artists": "node -r esm getArtists.js",
"artists:clear": "rm -rf ./cache/songs && node -r esm getArtists.js",
"songurls": "node -r esm getSongURLs.js",
"songurls:clear": "rm -rf ./cache/songURLs && node -r esm getSongURLs.js",
"songsraw": "node -r esm getSongsRaw.js",
"songsraw:clear": "rm -rf ./cache/songsRaw && node -r esm getSongsRaw.js",
"cleansongs": "node --max-old-space-size=4096 -r esm cleanRawSongs.js",
"test": "jest"
},
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"jsdom": "^16.2.2",
"knex": "^0.20.13",
"leveldown": "^5.6.0",
"levelup": "^4.3.2",
"puppeteer": "^3.0.1",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.0",
"@babel/preset-env": "^7.10.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"esm": "^3.2.25",
"jest": "^26.0.1"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"/__data__/"
]
}
}