forked from apify/crawlee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.98 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
{
"name": "apify",
"version": "0.8.11",
"description": "The scalable web crawling and scraping library for JavaScript",
"engines": {
"node": ">=8.0.0"
},
"main": "build/index.js",
"keywords": [
"apify",
"headless",
"chrome",
"puppeteer",
"selenium",
"crawler",
"scraper"
],
"author": {
"name": "Apify",
"email": "[email protected]",
"url": "https://www.apify.com"
},
"contributors": [
"Jan Curn <[email protected]>",
"Marek Trunkat <[email protected]>"
],
"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://www.apify.com/docs/sdk",
"files": [
"build"
],
"scripts": {
"build": "rm -rf ./build && babel src --out-dir build",
"build-doc": "npm run clean && npm run build && node ./node_modules/jsdoc/jsdoc.js --package ./package.json -c ./docs/jsdoc-conf.json -d ./build-docs",
"build-toc": "./node_modules/.bin/markdown-toc README.md -i",
"test": "npm run build && nyc --reporter=html --reporter=text mocha --timeout 60000 --compilers js:babel-core/register --recursive",
"prepare": "npm run build-toc && npm run build",
"prepublishOnly": "(test $RUNNING_FROM_SCRIPT || (echo \"You must use publish.sh instead of 'npm publish' directly!\"; exit 1)) && npm test && npm run lint",
"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-shared": "0.0.59",
"apify-client": "^0.3.0",
"bluebird": "^3.5.0",
"cheerio": "^1.0.0-rc.2",
"content-type": "^1.0.3",
"fs-extra": "^7.0.0",
"jquery": "^3.3.1",
"mime": "^2.3.1",
"proxy-chain": "^0.2.4",
"@apify/ps-tree": "^1.1.2",
"request-promise": "^4.2.2",
"rimraf": "^2.6.1",
"underscore": "^1.9.0",
"ws": "^6.0.0",
"xregexp": "^4.2.0"
},
"devDependencies": {
"apify-jsdoc-template": "github:apifytech/apify-jsdoc-template",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"basic-auth-parser": "^0.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.0.1",
"jsdoc": "^3.4.3",
"jsdoc-export-default-interop": "^0.3.1",
"markdown-toc": "^1.2.0",
"mocha": "^3.5.3",
"nyc": "^13.0.1",
"portastic": "^1.0.1",
"proxy": "^0.2.4",
"request": "^2.81.0",
"sinon": "^6.3.1",
"sinon-stub-promise": "^4.0.0",
"tmp": "^0.0.33",
"why-is-node-running": "^2.0.2"
},
"optionalDependencies": {
"puppeteer": "^1.8.0",
"selenium-webdriver": "^3.6.0"
}
}