-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "apify-page-analyzer",
"version": "0.0.2",
"description": "Apify page search for JavaScript",
"keywords": [
"apify",
"apifier",
"crawler",
"search"
],
"author": {
"name": "Apify",
"email": "[email protected]",
"url": "https://www.apify.com"
},
"contributors": [
"Jan Curn <[email protected]>",
"Marek Trunkat <[email protected]>",
"Jaroslav Hejlek <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apifytech/act-page-analyzer"
},
"bugs": {
"url": "https://github.com/apifytech/act-page-analyzer/issues"
},
"homepage": "https://github.com/apifytech/act-page-analyzer",
"scripts": {
"start": "node src/index.js",
"start-local": "APIFY_LOCAL_STORAGE_DIR=./apify_storage node src/index.js",
"test": "mocha --recursive",
"clean": "rm -rf build",
"lint": "eslint src test"
},
"dependencies": {
"apify": "^2.1",
"puppeteer": "*",
"cheerio": "^1.0.0-rc.3",
"html-entities": "^1.2.1",
"lodash": "^4.17.21",
"type-check": "^0.4"
},
"devDependencies": {
"@apify/eslint-config": "^0.2.2",
"chai": "^4.3.4",
"eslint": "^8.4.1",
"mocha": "^9.1.3"
}
}