forked from apify/apify-shared-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.16 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
{
"name": "apify-shared",
"version": "0.1.12",
"description": "Tools and constants shared across Apify projects.",
"main": "build/index.js",
"keywords": [
"apify"
],
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://www.apify.com"
},
"contributors": [
"Jan Curn <jan@apify.com>",
"Marek Trunkát <marek@apify.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apifytech/apify-shared-js"
},
"bugs": {
"url": "https://github.com/apifytech/apify-shared-js/issues"
},
"homepage": "https://www.apify.com",
"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 ./jsdoc/conf.json -d docs",
"test": "npm run build && mocha --timeout 5000 --compilers js:babel-core/register --recursive",
"test-cov": "npm run build && babel-node node_modules/isparta/bin/isparta cover --report text --report html node_modules/mocha/bin/_mocha -- --reporter dot",
"prepublishOnly": "test $RUNNING_FROM_SCRIPT || (echo \"You must use publish.sh instead of 'npm publish' directly!\"; exit 1)",
"clean": "rm -rf build && rm -rf docs",
"lint": "npm run build && eslint src test"
},
"dependencies": {
"bluebird": "^3.5.1",
"clone": "^2.1.1",
"request": "^2.83.0",
"slugg": "^1.2.1",
"underscore": "^1.8.3",
"url": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-plugin-add-module-exports": "^1.0.0",
"chai": "^4.1.2",
"deploy-web-to-s3": "^1.2.1",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.4.0",
"istanbul": "0.4.5",
"isparta": "^4.0.0",
"jsdoc": "^3.4.3",
"jsdoc-export-default-interop": "^0.3.1",
"apify-jsdoc-template": "github:apifytech/apify-jsdoc-template",
"mocha": "^5.0.0",
"sinon": "^7.0.0"
}
}