forked from puppeteer/replay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.93 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@puppeteer/replay",
"version": "2.6.0",
"description": "Replay is a library which provides an API to replay and stringify recordings created using Chrome DevTools Recorder](https://developer.chrome.com/docs/devtools/recorder/)",
"main": "lib/cjs/main.cjs",
"types": "lib/main.d.ts",
"bin": "lib/cli.js",
"exports": {
".": {
"types": "./lib/main.d.ts",
"import": "./lib/main.js",
"require": "./lib/cjs/main.cjs"
}
},
"repository": "github:puppeteer/replay",
"directories": {
"doc": "docs"
},
"engines": {
"node": ">=14"
},
"scripts": {
"test": "npm run build:testserver && cross-env TS_NODE_PROJECT=test/tsconfig.json mocha --config .mocharc.cjs",
"test:headful": "cross-env PUPPETEER_HEADFUL=true npm run test",
"test:coverage": "c8 npm run test",
"test:fast": "npm run test -- --ignore=test/e2e/**/*",
"lint": "npm run lint:format",
"lint:format": "prettier --check . && npm run eslint",
"format": "prettier --write . && eslint --ext js --ext ts --fix .",
"eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)",
"docs": "typedoc --tsconfig docs.tsconfig.json --readme none --gitRevision main --externalPattern --excludeExternals --excludeProtected --excludePrivate --plugin typedoc-plugin-markdown --out docs/api src/main.ts && npm run format",
"clean": "rimraf lib",
"build": "npm run clean && rollup --config rollup.config.cjs",
"build:testserver": "cd third_party/testserver && npm run build"
},
"files": [
"lib",
"!lib/**/*.d.ts",
"!lib/**/*.d.ts.map",
"lib/main.d.ts"
],
"author": "Chrome DevTools authors",
"license": "Apache-2.0",
"type": "module",
"devDependencies": {
"@rollup/plugin-typescript": "9.0.1",
"@types/chai": "4.3.3",
"@types/mime": "3.0.1",
"@types/mocha": "10.0.0",
"@types/node": "18.11.0",
"@types/ws": "8.5.3",
"@types/yargs": "17.0.13",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"c8": "7.12.0",
"chai": "4.3.6",
"cross-env": "7.0.3",
"eslint": "8.25.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-tsdoc": "0.2.17",
"lighthouse": "9.5.0-dev.20221024",
"mime": "3.0.0",
"mocha": "10.1.0",
"prettier": "2.7.1",
"puppeteer": "19.3.0",
"puppeteer-core": "19.3.0",
"rimraf": "3.0.2",
"rollup": "3.2.2",
"rollup-plugin-dts": "5.0.0",
"snap-shot-it": "7.9.6",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typedoc": "0.23.16",
"typedoc-plugin-markdown": "3.13.6",
"typescript": "4.8.4"
},
"peerDependencies": {
"puppeteer": ">=18.0.5"
},
"peerDependenciesMeta": {
"puppeteer": {
"optional": true
}
},
"dependencies": {
"cli-table3": "0.6.3",
"colorette": "2.0.19",
"yargs": "17.6.2"
}
}