v8/tools/turbolizer/package.json
Danylo Boiko c5f878482e [turbolizer] Initial TS code refactoring
- basic file movement
- dependencies update
- grammar fix
- refactoring common files (from new folder 'common')

Change-Id: Ie47d565202aefe247ef6fd9e64108926e467d533
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3695385
Reviewed-by: Tobias Tebbi <tebbi@chromium.org>
Commit-Queue: Danylo Boiko <danielboyko02@gmail.com>
Cr-Commit-Position: refs/heads/main@{#81050}
2022-06-09 18:03:03 +00:00

36 lines
897 B
JSON

{
"name": "turbolizer",
"version": "0.1.1",
"description": "Visualization tool for V8 TurboFan IR graphs",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"deploy": "./deploy.sh",
"test": "ts-mocha -p tsconfig.test.json test/**/*-test.ts",
"dev-server": "ws",
"presubmit": "tslint --project ./tslint.json --fix"
},
"author": "The V8 team",
"license": "MIT",
"dependencies": {
"@types/d3": "^5.16.0",
"d3": "^5.16.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript2": "^0.32.1"
},
"repository": {
"type": "git",
"url": "https://github.com/v8/v8.git"
},
"devDependencies": {
"@types/node": "^17.0.41",
"chai": "^4.3.6",
"local-web-server": "^5.2.1",
"mocha": "^10.0.0",
"rollup": "^2.75.6",
"ts-mocha": "^10.0.0",
"tslint": "^5.20.1",
"typescript": "^4.7.3"
}
}