2018-05-29 09:32:33 +00:00
|
|
|
{
|
|
|
|
"name": "turbolizer",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "Visualization tool for V8 TurboFan IR graphs",
|
|
|
|
"scripts": {
|
2018-07-11 06:38:37 +00:00
|
|
|
"build": "rollup -c",
|
2018-11-06 20:30:11 +00:00
|
|
|
"watch": "rollup -c -w",
|
2018-06-11 12:17:51 +00:00
|
|
|
"deploy": "./deploy.sh",
|
2018-10-31 10:21:58 +00:00
|
|
|
"test": "ts-mocha -p tsconfig.test.json test/**/*-test.ts",
|
2019-01-12 15:35:07 +00:00
|
|
|
"dev-server": "ws",
|
|
|
|
"presubmit": "tslint --project ./tslint.json --fix"
|
2018-05-29 09:32:33 +00:00
|
|
|
},
|
|
|
|
"author": "The V8 team",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2019-10-15 15:35:49 +00:00
|
|
|
"@types/d3": "^5.7.2",
|
2019-01-04 14:09:17 +00:00
|
|
|
"d3": "^5.7.0",
|
|
|
|
"rollup-plugin-node-resolve": "^4.0.0",
|
2019-03-18 16:23:48 +00:00
|
|
|
"rollup-plugin-typescript2": "^0.20.1"
|
2018-05-29 09:32:33 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/v8/v8.git"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-10-10 19:30:12 +00:00
|
|
|
"chai": "^4.2.0",
|
2019-01-09 20:41:34 +00:00
|
|
|
"local-web-server": "^2.6.0",
|
2018-10-10 19:30:12 +00:00
|
|
|
"mocha": "^5.2.0",
|
2019-10-15 15:35:49 +00:00
|
|
|
"rollup": "^0.68.2",
|
2018-10-10 19:30:12 +00:00
|
|
|
"ts-mocha": "^2.0.0",
|
2019-10-15 15:35:49 +00:00
|
|
|
"tslint": "^5.12.0",
|
|
|
|
"typescript": "^3.2.2"
|
2018-05-29 09:32:33 +00:00
|
|
|
}
|
|
|
|
}
|