-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
81 lines (81 loc) · 2.22 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
{
"name": "calibre",
"version": "6.0.0",
"engines": {
"node": ">= 18"
},
"type": "module",
"description": "Calibre - Page speed performance testing with Google Lighthouse",
"author": "calibreapp.com",
"main": "dist/index.js",
"bin": {
"calibre": "./src/cli.js"
},
"exports": {
".": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"./cli-commands": "./src/cli-commands.js",
"./cli-metadata": "./src/cli-metadata.js"
},
"dependencies": {
"@json2csv/node": "^7.0.3",
"chalk": "^5.0.1",
"columnify": "^1.6.0",
"configstore": "^7.0.0",
"cookiefile": "^1.0.10",
"date-fns": "^4.1.0",
"graphql-request": "^7.1.0",
"humanize": "0.0.9",
"listr": "^0.14.1",
"log-symbols": "^7.0.0",
"marked": "^14.1.4",
"marked-terminal": "^7.0.0",
"ora": "^8.0.1",
"p-throttle": "^7.0.0",
"simple-update-notifier": "^2.0.0",
"stats-percentile": "^3.1.0",
"yargs": "^17.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.7",
"esbuild": "^0.24.0",
"eslint": "^9.9.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-security": "^3.0.1",
"execa": "^9.3.1",
"express": "^4.19.2",
"jest": "^29.7.0",
"prettier": "3.4.2",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"scripts": {
"ci": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --runInBand --no-colors --verbose=false",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --no-colors --verbose=false",
"lint": "eslint .",
"clean": "rm -rf dist/",
"build": "npm run clean && esbuild index.js --bundle --platform=node --outfile=dist/index.cjs",
"pre-publish": "echo //registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN} > .npmrc",
"generate-cli-md": "node ./generate-cli-md.js > CLI_COMMANDS.md"
},
"keywords": [
"performance",
"testing",
"test",
"lighthouse"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/calibreapp/cli.git"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
}
}