-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "listal-bot",
"description": "Bot to download pictures from listal.com",
"preferGlobal": true,
"bin": {
"listal-bot": "dist/index.js"
},
"author": "opensource@aerolit.pl",
"version": "1.2.2",
"repository": {
"type": "git",
"url": "https://github.com/Messere/listal-bot"
},
"license": "MIT",
"keywords": [
"listal",
"pictures",
"download"
],
"dependencies": {
"brotli": "^1.3.2",
"cloudscraper": "^4.1.2",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"image-downloader": "^3.4.1",
"mkdirp": "^0.5.1",
"queue": "^4.4.2",
"request": "^2.88.0"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/jasmine": "^2.8.8",
"@types/mkdirp": "^0.5.2",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.5.2",
"@types/node-fetch": "^2.1.1",
"@types/puppeteer": "^1.12.3",
"@types/std-mocks": "^1.0.0",
"jasmine-ts": "^0.2.1",
"mock-fs": "^4.5.0",
"read-file": "^0.2.0",
"std-mocks": "^1.0.1",
"tslint": "^5.11.0",
"ts-node": "^8.0.3",
"typescript": "^2.9.2"
},
"scripts": {
"lint": "tslint --project ./",
"compile": "rm -fr dist/* && tsc && node update-version.js",
"test": "jasmine-ts --config=./jasmine.json"
}
}