-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.47 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
{
"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": "[email protected]",
"name": "Peter Snyder",
"url": "https://www.peteresnyder.com"
},
"contributors": [
{
"name": "Shivan Kaul Sahib",
"email": "[email protected]"
}
],
"main": "./built/run.js",
"types": "./src/declarations.d.ts",
"license": "MPL-2.0",
"dependencies": {
"argparse": "2.0.1",
"chrome-har": "1.0.1",
"puppeteer-core": "23.11.1",
"which": "5.0.0",
"xvfb": "0.4.0"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@stylistic/eslint-plugin": "2.12.1",
"@tsconfig/node20": "20.1.4",
"@types/argparse": "2.0.17",
"@types/eslint__js": "8.42.3",
"@types/which": "3.0.4",
"@typescript-eslint/parser": "8.19.0",
"eslint": "9.17.0",
"http-server": "14.1.1",
"mocha": "11.0.1",
"neostandard": "0.12.0",
"tree-kill": "1.2.2",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0"
}
}