3rd-party-cpu-abuser
Version:
From a Chrome Dev Tools recorded timeline saved as JSON, this will help you identify quickly wich domain name eats most of the CPU
38 lines (37 loc) • 1.1 kB
JSON
{
"name": "3rd-party-cpu-abuser",
"version": "1.4.0",
"description": "From a Chrome Dev Tools recorded timeline saved as JSON, this will help you identify quickly wich domain name eats most of the CPU",
"keywords": "webperf, performance, devtools, 3rd-party, profiling",
"homepage": "https://github.com/jpvincent/3rd-party-cpu-abuser",
"main": "index.js",
"bugs": "https://github.com/jpvincent/3rd-party-cpu-abuser/issues",
"repository": "git+https://github.com/jpvincent/3rd-party-cpu-abuser.git",
"engines": {
"node": ">=9.3.0",
"npm": ">=6.4.1"
},
"scripts": {
"start": "echo \"Simply run 'node cli.js path/to/yourTraceFile.json'\"",
"test": "jest",
"testing": "jest --watch"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"index.js"
],
"coverageDirectory": "__coverage"
},
"author": "jpvincent",
"license": "ISC",
"dependencies": {
"cli-table": "0.3.1",
"devtools-timeline-model": "1.4.0",
"nopt": "4.0.1"
},
"devDependencies": {
"jest": "^23.6.0",
"node-cmd": "^3.0.0"
}
}