-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
36 lines (36 loc) · 859 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
36
{
"name": "v8-deopt-viewer",
"version": "0.0.0",
"description": "View deoptimizations of your JavaScript in V8",
"repository": "https://github.com/andrewiggins/v8-deopt-viewer",
"author": "Andre Wiggins",
"license": "MIT",
"scripts": {
"changeset": "changeset",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"bugs": {
"url": "https://github.com/andrewiggins/v8-deopt-viewer/issues"
},
"homepage": "https://github.com/andrewiggins/v8-deopt-viewer",
"private": true,
"workspaces": [
"packages/*"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,yml,md}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"tape": "^5.6.1"
},
"volta": {
"node": "18.12.1"
}
}