-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "node-downloader",
"version": "1.1.0",
"description": "Node console parallel downloader",
"main": "./src/console.js",
"bin": {
"nodown": "./src/console.js"
},
"repository": {
"type": "git",
"url": "https://github.com/riccardomerlin/node-downloader.git"
},
"scripts": {
"citest": "jest --ci --coverage",
"lint": "gulp lint",
"monitor": "node ./src/lib/clientMonitor.js",
"precitest": "npm run lint",
"pretest": "npm run lint",
"start": "node ./src/console.js",
"test": "jest"
},
"engines": {
"node": "^12"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"src/**/*.js",
"!coverage/**",
"!**/node_modules/**"
],
"coverageDirectory": "./coverage"
},
"pre-commit": [
"test"
],
"keywords": [
"backup",
"onedrive",
"flickr",
"download"
],
"author": "Riccardo Merlin",
"license": "ISC",
"devDependencies": {
"del": "^3.0.0",
"eslint-config-airbnb-base": "11.3.2",
"eslint-plugin-import": "^2.7.0",
"gulp": "^4.0.0",
"gulp-eslint": "3.0.1",
"gulp-plumber": "^1.1.0",
"jest": "^26.6.3",
"pre-commit": "^1.2.2"
},
"dependencies": {
"axios": "^0.21.1",
"detect-port": "^1.2.2",
"dotenv": "^6.1.0",
"express": "^4.21.2",
"flickr-sdk": "^3.7.0",
"googleapis": "^72.0.0",
"hbs": "^4.1.2",
"helmet": "^3.21.1",
"open": "^8.0.6",
"proper-url-join": "^1.2.0",
"server-destroy": "^1.0.1",
"single-line-log": "^1.1.2",
"superagent": "^3.7.0",
"toobusy-js": "^0.5.1",
"uuid": "^3.3.2"
}
}