-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.46 KB
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
{
"name": "apify-extra",
"version": "0.0.1",
"description": "Advanced and experimental functionality for Apify Actors and Crawlee. Use with caution!",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://apify.com"
},
"scripts": {
"start": "npm run start:dev",
"build": "rimraf dist && tsc",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --silent --runInBand ./test/unit",
"test:e2e": "jest --json ./test/e2e > test-results.json",
"postbuild": "gen-esm-wrapper dist/index.js dist/index.mjs && npm run copy-files",
"copy-files": "cp ./src/captcha-solver/solver.py ./dist/captcha-solver/solver.py",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"start-docs:dev": "cd website && npm i && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metalwarrior665/apify-utils.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/metalwarrior665/apify-utils/issues"
},
"homepage": "https://github.com/metalwarrior665/apify-utils#readme",
"dependencies": {
"moment": "^2.29.1",
"async-sema": "^3.1.0",
"bluebird": "^3.7.2",
"got-scraping": "^3.2.9"
},
"peerDependencies": {
"apify": ">= 3.0.0",
"crawlee": ">= 3.0.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/md5": "^2.2.1",
"@types/mocha": "^8.0.3",
"@apify/eslint-config": "^0.1.3",
"@types/eslint": "^7.2.6",
"mocha": "^8.3.0",
"@apify/eslint-config-ts": "^0.2.3",
"@apify/tsconfig": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.20.0",
"ts-node": "^10.9.1",
"typescript": "4.7.4",
"gen-esm-wrapper": "^1.1.3",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typedoc": "^0.23.7",
"typedoc-plugin-markdown": "^3.13.3",
"uuid4": "^2.0.2"
}
}