-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
122 lines (122 loc) · 3.54 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
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "ayakashi",
"version": "1.0.0-beta8.4",
"description": "The next generation web scraping framework",
"author": {
"name": "Zisis Maras",
"email": "contact@zisismaras.me",
"url": "https://github.com/ayakashi-io/ayakashi"
},
"repository": {
"url": "https://github.com/ayakashi-io/ayakashi"
},
"license": "AGPL-3.0-only",
"bin": {
"ayakashi": "./bin/ayakashi.js"
},
"files": [
"lib",
"bin",
"README.md",
"LICENSE",
"npm-shrinkwrap.json",
"scripts/postInstall.js"
],
"keywords": [
"web-scraping",
"web-crawling",
"data-mining",
"automation",
"headless-chrome"
],
"preferGlobal": true,
"devDependencies": {
"@types/async": "~2.4.1",
"@types/backoff": "~2.5.1",
"@types/bluebird": "~3.5.27",
"@types/browserify": "~12.0.36",
"@types/chalk": "~2.2.0",
"@types/cli-table": "~0.3.0",
"@types/debug": "~0.0.31",
"@types/express": "~4.16.1",
"@types/extract-zip": "~1.6.2",
"@types/jest": "~26.0.23",
"@types/jsdom": "~12.2.1",
"@types/json2csv": "~4.2.0",
"@types/lodash": "~4.14.138",
"@types/mkdirp": "~0.5.2",
"@types/node": "~10.12.20",
"@types/node-dir": "~0.0.32",
"@types/prompts": "~2.4.1",
"@types/resolve-from": "~4.0.0",
"@types/rimraf": "~2.0.2",
"@types/semver": "~6.0.0",
"@types/uuid": "~3.4.4",
"@types/validator": "~10.11.3",
"@types/yargs": "~12.0.9",
"eslint": "~5.12.1",
"eslint-config-google": "~0.11.0",
"jest": "~26.6.3",
"jest-extended": "~0.11.5",
"js-beautify": "~1.13.13",
"prettier": "~1.15.3",
"ts-jest": "~26.5.6",
"tslint": "~5.12.1",
"tslint-eslint-rules": "~5.4.0",
"tslint-microsoft-contrib": "~6.0.0",
"typedoc": "~0.20.36",
"typescript": "~4.2.4"
},
"dependencies": {
"@ayakashi/get-node-selector": "^1.0.0",
"@ayakashi/input": "^1.0.0",
"@ayakashi/request": "^2.88.7",
"async": "~2.6.2",
"backoff": "~2.5.0",
"body-parser": "~1.18.3",
"boxen": "~3.1.0",
"browserify": "~16.2.3",
"browserify-incremental": "~3.1.1",
"chalk": "~2.4.2",
"chrome-remote-interface": "~0.32.2",
"cli-table": "~0.3.1",
"dayjs": "~1.8.8",
"debug": "~4.1.1",
"express": "~4.16.4",
"extract-zip": "~1.6.7",
"jsdom": "~13.1.0",
"json2csv": "~4.3.5",
"json5": "~2.2.1",
"lodash": "^4.17.21",
"mariadb": "~2.0.3",
"mkdirp": "~0.5.1",
"mysql2": "~1.6.5",
"node-dir": "~0.1.17",
"ora": "~3.2.0",
"pg": "~7.9.0",
"pipeproc": "^0.4.1",
"prompts": "~2.4.2",
"require-all": "~3.0.0",
"resolve-from": "~4.0.0",
"rimraf": "~2.6.3",
"semver": "~6.1.1",
"sequelize": "~5.19.0",
"sqlite3": "~5.0.2",
"tedious": "~5.0.3",
"tough-cookie": "~3.0.1",
"user-agents": "~1.0.1425",
"uuid": "~3.3.2",
"yargs": "~13.2.2"
},
"scripts": {
"clean": "tsc --build --clean",
"build": "tsc --build --clean && tsc --build",
"watch": "tsc --build --clean && tsc --watch",
"lint": "tslint -p ./",
"test": "npm run build && node lib/cli/cli.js update-chrome && node scripts/checkTypo.js && jest",
"build-types": "rm -rf ./lib && tsc --build --clean && tsc -d --emitDeclarationOnly --allowJs false && node scripts/formatTypes.js",
"generate-core-action-docs": "typedoc src/prelude/prelude.ts --json ./doc.json && node ./scripts/generateCoreActionDocs.js && rm ./doc.json",
"postinstall": "node scripts/postInstall.js",
"prepublishOnly": "rm -rf ./lib && tsc --build --clean && tsc --build && npm shrinkwrap"
}
}