forked from SantoshSrinivas79/reddit-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "reddit-scraper",
"version": "1.2.2",
"description": "This is a boilerplate of an Apify actor.",
"dependencies": {
"apify": "^1.0.1",
"date-fns": "^2.17.0",
"puppeteer": "^7.0.4",
"safe-eval": "^0.4.1"
},
"devDependencies": {
"@apify/eslint-config": "^0.1.0",
"eslint": "~7.2.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"standard-version": "^9.1.1"
},
"scripts": {
"start": "node src/main.js",
"lint": "./node_modules/.bin/eslint ./src --ext .js,.jsx",
"lint:fix": "./node_modules/.bin/eslint ./src --ext .js,.jsx --fix",
"test": "jest",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"author": "Gustavo T Rudiger",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/gustavotr/reddit-scraper.git"
}
}