forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 897 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
35
{
"name": "turbolizer",
"version": "0.1.1",
"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.16.0",
"d3": "^5.16.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0"
},
"repository": {
"type": "git",
"url": "https://github.com/v8/v8.git"
},
"devDependencies": {
"@types/node": "^17.0.41",
"chai": "^4.3.6",
"local-web-server": "^5.2.1",
"mocha": "^10.0.0",
"rollup": "^2.75.6",
"ts-mocha": "^10.0.0",
"tslint": "^5.20.1",
"typescript": "^4.7.3"
}
}