1{ 2 "name": "turbolizer", 3 "version": "0.1.0", 4 "description": "Visualization tool for V8 TurboFan IR graphs", 5 "scripts": { 6 "build": "rollup -c", 7 "watch": "rollup -c -w", 8 "deploy": "./deploy.sh", 9 "test": "ts-mocha -p tsconfig.test.json test/**/*-test.ts", 10 "dev-server": "ws", 11 "presubmit": "tslint --project ./tslint.json --fix" 12 }, 13 "author": "The V8 team", 14 "license": "MIT", 15 "dependencies": { 16 "@types/d3": "^5.7.2", 17 "d3": "^5.7.0", 18 "rollup-plugin-node-resolve": "^4.0.0", 19 "rollup-plugin-typescript2": "^0.20.1" 20 }, 21 "repository": { 22 "type": "git", 23 "url": "https://github.com/v8/v8.git" 24 }, 25 "devDependencies": { 26 "chai": "^4.2.0", 27 "local-web-server": "^2.6.0", 28 "mocha": "^5.2.0", 29 "rollup": "^0.68.2", 30 "ts-mocha": "^2.0.0", 31 "tslint": "^5.12.0", 32 "typescript": "^3.2.2" 33 } 34} 35