forked from apify/crawlee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "apify",
"version": "0.16.1",
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
"engines": {
"node": ">=8.14.0"
},
"main": "build/index.js",
"keywords": [
"apify",
"headless",
"chrome",
"puppeteer",
"crawler",
"scraper"
],
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <jan@apify.com>",
"Marek Trunkat <marek@apify.com>",
"Ondra Urban <ondra@apify.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apifytech/apify-js"
},
"bugs": {
"url": "https://github.com/apifytech/apify-js/issues"
},
"homepage": "https://sdk.apify.com/",
"files": [
"build"
],
"scripts": {
"build": "rm -rf ./build && babel src --out-dir build --copy-files",
"build-docs": "npm run clean && npm run build && node ./website/tools/build_docs.js",
"build-readme": "node ./tools/build_readme.js",
"test": "npm run build && nyc --reporter=html --reporter=text mocha --timeout 60000 --require @babel/register --recursive --exit",
"test:integration": "npm run build && nyc --reporter=html --reporter=text mocha 'test/integration_tests' --timeout 60000 --require @babel/register --recursive --exit",
"prepare": "npm run build",
"prepublishOnly": "(test $TRAVIS || (echo \"Publishing is reserved to the Travis CI!\"; exit 1))",
"clean": "rm -rf build",
"lint": "npm run build && ./node_modules/.bin/eslint ./src ./test",
"lint:fix": "./node_modules/.bin/eslint ./src ./test --ext .js,.jsx --fix"
},
"dependencies": {
"@apify/http-request": "^1.1.2",
"@apify/ps-tree": "^1.1.3",
"apify-client": "^0.5.25",
"apify-shared": "^0.1.56",
"cheerio": "^1.0.0-rc.3",
"content-type": "^1.0.4",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"htmlparser2": "^3.10.1",
"jquery": "^3.4.1",
"mime": "^2.3.1",
"proxy-chain": "^0.2.7",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"rimraf": "^2.7.1",
"semver": "^6.3.0",
"socket.io": "^2.2.0",
"underscore": "^1.9.1",
"ws": "^6.2.1",
"xregexp": "^4.2.4"
},
"devDependencies": {
"@apify/eslint-config": "^0.0.3",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^7.0.0",
"@types/mocha": "^5.2.7",
"@types/puppeteer": "^1.19.1",
"@types/sinon": "^7.0.13",
"@types/socket.io": "^2.1.2",
"basic-auth-parser": "^0.0.2",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"csv-parse": "^4.4.3",
"eslint": "^5.16.0",
"fpcollect": "^1.0.4",
"fpscanner": "^0.1.5",
"jsdoc": "^3.5.5",
"jsdoc-export-default-interop": "^0.3.1",
"mocha": "^5.2.0",
"nyc": "^14.0.0",
"portastic": "^1.0.1",
"prettier": "^1.18.2",
"proxy": "^0.2.4",
"sinon": "^7.4.1",
"sinon-stub-promise": "^4.0.0",
"socket.io-client": "^2.2.0",
"ua-parser-js": "^0.7.20",
"why-is-node-running": "^2.0.3"
},
"optionalDependencies": {
"puppeteer": "1.18.1"
}
}