package.json 862 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": "rollup -c -w",
8
    "deploy": "./deploy.sh",
9
    "test": "ts-mocha -p tsconfig.test.json test/**/*-test.ts",
10 11
    "dev-server": "ws",
    "presubmit": "tslint --project ./tslint.json --fix"
12 13 14 15
  },
  "author": "The V8 team",
  "license": "MIT",
  "dependencies": {
16
    "@types/d3": "^5.7.2",
17 18
    "d3": "^5.7.0",
    "rollup-plugin-node-resolve": "^4.0.0",
19
    "rollup-plugin-typescript2": "^0.20.1"
20 21 22 23 24 25
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/v8/v8.git"
  },
  "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 32
    "tslint": "^5.12.0",
    "typescript": "^3.2.2"
33 34
  }
}