-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.78 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
{
"name": "webscraper-exporter",
"version": "1.3.5",
"license": "MIT",
"bin": {
"wsce": "./dist/cli/index.js"
},
"main": "./dist/index.js",
"type": "commonjs",
"scripts": {
"build:watch": "tsc -p . -w",
"build": "tsc -p .",
"bundle": "ncc build ./src/cli/index.ts -o bundle/ --target es2020"
},
"dependencies": {
"@airbnb/node-memwatch": "^2.0.0",
"colorette": "^2.0.16",
"download-chromium": "^2.2.1",
"fs-extra": "^10.0.0",
"inquirer": "^8.2.0",
"joi": "^17.6.0",
"ms": "^2.1.3",
"nanoid": "^3.2.0",
"node-abort-controller": "^3.0.1",
"p-queue": "6",
"path-shorten": "^0.1.2",
"prom-client": "^14.0.1",
"puppeteer-core": "^14.1.0",
"simple-git": "^3.5.0",
"update-notifier": "^5.1.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/airbnb__node-memwatch": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/ms": "^0.7.31",
"@types/node": "^8.9.5",
"@types/update-notifier": "^5.1.0",
"@types/yargs": "^17.0.8",
"@vercel/ncc": "^0.34.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"keywords": [
"prometheus",
"scraper",
"exporter",
"puppeteer",
"metrics"
],
"repository": {
"type": "git",
"url": "https://github.com/cstefFlexin/webscraper-exporter.git"
},
"pkg": {
"targets": [
"node14-macos-x64"
],
"outputPath": "release",
"scripts": "dist/**/*.js",
"assets": [
"templates/**/*",
"config/**/*",
"public/**/*"
]
}
}