package.json 674 Bytes
Newer Older
1 2 3 4 5
{
  "name": "turbolizer",
  "version": "0.1.0",
  "description": "Visualization tool for V8 TurboFan IR graphs",
  "scripts": {
6
    "build": "rollup -c",
7
    "watch": "tsc --watch",
8 9
    "deploy": "./deploy.sh",
    "format": "tsfmt -r"
10 11 12 13
  },
  "author": "The V8 team",
  "license": "MIT",
  "dependencies": {
14
    "@types/d3": "^5.0.0",
15 16 17
    "d3": "^5.5.0",
    "pegjs": "^0.10.0",
    "rollup": "^0.62.0",
18
    "rollup-plugin-node-resolve": "^3.3.0",
19
    "rollup-plugin-typescript2": "^0.15.1"
20 21 22 23 24 25
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/v8/v8.git"
  },
  "devDependencies": {
26 27
    "typescript": "^2.9.1",
    "typescript-formatter": "^7.2.2"
28 29
  }
}