-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.92 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.92 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
{
"name": "ringmaster",
"version": "1.1.1",
"author": "Gerrproger",
"license": "MIT",
"description": "CLI package for testing websites & checking their contents",
"repository": "https://github.com/Gerrproger/ringmaster.git",
"main": "lib/index.js",
"type": "module",
"scripts": {
"start": "node cli.js",
"start:interactive": "node cli-interactive.js",
"lint": "eslint . -c .eslintrc.cjs",
"lint:fix": "eslint . -c .eslintrc.cjs --fix",
"test": "tap tests",
"docs": "rimraf docs && jsonschema2md --input lib/schemas --schema-extension json --schema-out=- --out docs",
"transpile": "rimraf build && esbuild --platform=node --define:import.meta.url=__filename --bundle --outfile=build/ringmaster.cjs cli-interactive.js",
"compile": "rimraf bin && pkg --config pkg.config.json --public --public-packages '*' --no-bytecode --compress Brotli build/ringmaster.cjs",
"build": "$npm_execpath run docs && echo 'Transpiling...' && $npm_execpath run transpile > '/dev/null' 2>&1 && echo 'Compiling...' && $npm_execpath run compile > '/dev/null' 2>&1 && rimraf build"
},
"bin": {
"ringmaster": "./cli.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"ajv": "^8.12.0",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"inquirer": "^9.2.10",
"inquirer-select-directory": "^1.2.0",
"logion": "^1.0.0",
"open": "^9.0.0",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"puppeteer": "^21.1.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-extra-plugin-user-preferences": "^2.4.1"
},
"devDependencies": {
"@adobe/jsonschema2md": "^7.1.5",
"@babel/eslint-parser": "^7.22.11",
"@babel/plugin-syntax-import-assertions": "^7.20.5",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"pkg": "^5.8.1",
"rimraf": "^5.0.1",
"tap": "^18.0.0"
},
"resolutions": {
"clone-deep": "^4.0.1"
}
}