-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "@daneroo/gphotos-puppeteer",
"version": "1.0.0",
"description": "Download Google Photos with puppeteer",
"main": "src/index.js",
"bin": {
"gphotos-puppeteer": "./gphotos-puppeteer"
},
"scripts": {
"start": "./gphotos-puppeteer",
"test": "npm run lint && npm audit && npm run unit",
"lint": "standard",
"unit": "jest",
"unit:watch": "jest --watchAll",
"coverage": "jest --collectCoverageFrom=src/**.js --coverage src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daneroo/gphotos-puppeteer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/daneroo/gphotos-puppeteer/issues"
},
"homepage": "https://github.com/daneroo/gphotos-puppeteer#readme",
"dependencies": {
"async-mutex": "^0.1.4",
"cli-progress": "^3.5.0",
"puppeteer": "^2.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"rxjs": "^6.5.4",
"yargs": "^15.1.0"
},
"devDependencies": {
"jest": "^24.9.0",
"standard": "^14.3.1"
},
"standard": {
"env": {
"node": true,
"jest": true
}
}
}