-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "chrome-timeline",
"version": "0.0.15",
"description": "Write performance tests and get timeline profiling data from puppeteer.",
"main": "./lib/index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=html mocha lib/*.test.js",
"tsc": "tsc",
"watch": "tsc -w",
"lint": "tslint src/**/*.ts",
"prepublish": "npm run tsc"
},
"keywords": [
"timeline",
"profiling",
"chrome",
"chromium",
"puppeteer"
],
"repository": "https://github.com/xtermjs/chrome-timeline",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^12.0.4",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/app-root-path": "^1.2.4",
"@types/fs-extra": "^9.0.13",
"@types/puppeteer": "^5.4.3",
"app-root-path": "^3.0.0",
"devtools-timeline-model": "^1.4.0",
"fs-extra": "^10.0.0",
"puppeteer": "^5.5.0",
"simple-git": "^3.5.0",
"winston": "^3.3.3"
}
}