forked from apify/apify-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.46 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
{
"name": "apify-client",
"version": "0.5.22",
"description": "Apify API client for JavaScript",
"main": "build/index.js",
"keywords": [
"apify",
"api",
"apifier",
"crawler",
"scraper"
],
"engines": {
"node": ">=8.0.0"
},
"author": {
"name": "Apify",
"email": "[email protected]",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <[email protected]>",
"Marek Trunkát <[email protected]>",
"Lubos Turek <[email protected]>",
"Ondra Urban <[email protected]>",
"Jakub Drobník <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apifytech/apify-client-js"
},
"bugs": {
"url": "https://github.com/apifytech/apify-client-js/issues"
},
"homepage": "https://apify.com/docs/sdk/apify-client-js/latest",
"files": [
"build"
],
"scripts": {
"build": "babel src --out-dir build",
"build-doc": "npm run clean && npm run build && node ./node_modules/jsdoc/jsdoc.js --package ./package.json -c ./jsdoc/conf.json -d docs",
"build-toc": "./node_modules/.bin/markdown-toc README.md -i",
"test": "npm run build && nyc --reporter=html --reporter=text mocha --timeout 5000 --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 && rm -rf docs",
"lint": "npm run build && eslint src test"
},
"dependencies": {
"apify-shared": "^0.1.45",
"content-type": "^1.0.4",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"type-check": "^0.3.2",
"underscore": "^1.9.1"
},
"devDependencies": {
"apify-jsdoc-template": "github:apifytech/apify-jsdoc-template",
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"deploy-web-to-s3": "^1.3.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.4.0",
"jsdoc": "^3.4.3",
"jsdoc-export-default-interop": "^0.3.1",
"markdown-toc": "^1.2.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"sinon": "^6.3.1"
}
}