forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 862 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "turbolizer",
"version": "0.1.0",
"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.7.2",
"d3": "^5.7.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript2": "^0.34.1"
},
"repository": {
"type": "git",
"url": "https://github.com/v8/v8.git"
},
"devDependencies": {
"chai": "^4.2.0",
"local-web-server": "^2.6.0",
"mocha": "^5.2.0",
"rollup": "^0.68.2",
"ts-mocha": "^2.0.0",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
}
}