-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 936 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
{
"name": "flickr-dl",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"lint": "eslint src/**",
"test": "jest",
"start": "ts-node main.ts",
"build": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"minimist": "^1.2.2",
"mz": "^2.7.0",
"node-fetch": "^2.2.0",
"puppeteer": "^1.20.0",
"ts-node": "^7.0.1",
"url-join": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/mz": "0.0.32",
"@types/node": "^10.17.6",
"@types/puppeteer": "^1.9.0",
"@types/request": "^2.47.1",
"@types/url-join": "^0.8.2",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^25.0.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.5"
}
}