-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "pagegraph-crawl",
"version": "1.2.0",
"description": "CLI for crawling with PageGraph.",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"lint": "npx eslint src/**/*.ts src/*.ts && npx eslint -c eslint-neostandard.config.js test/*.js",
"lint:fix": "npx eslint --fix src/**/*.ts src/*.ts && npx standard --fix -c eslint-neostandard.config.js test/*.js",
"build": "npx tsc",
"crawl": "node ./built/run.js",
"clean": "rm -Rf built/*",
"test": "npm run build && mocha test/test.js --timeout 60000"
},
"type": "module",
"author": {
"email": "pes@brave.com",
"name": "Peter Snyder",
"url": "https://www.peteresnyder.com"
},
"contributors": [
{
"name": "Shivan Kaul Sahib",
"email": "ssahib@brave.com"
}
],
"main": "./built/run.js",
"types": "./src/declarations.d.ts",
"license": "MPL-2.0",
"dependencies": {
"argparse": "2.0.1",
"chrome-har": "1.0.1",
"node-gzip": "1.1.2",
"puppeteer-core": "23.11.1",
"which": "5.0.0",
"xvfb": "0.4.0"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@stylistic/eslint-plugin": "2.13.0",
"@tsconfig/node20": "20.1.4",
"@types/node-gzip": "1.1.3",
"@types/argparse": "2.0.17",
"@types/eslint__js": "8.42.3",
"@types/which": "3.0.4",
"@typescript-eslint/parser": "8.22.0",
"eslint": "9.19.0",
"http-server": "14.1.1",
"mocha": "11.1.0",
"neostandard": "0.12.0",
"tree-kill": "1.2.2",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0"
}
}