forked from ChromeDevTools/debugger-protocol-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1022 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
{
"name": "debugger-protocol-viewer",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com/chromedevtools/debugger-protocol-viewer.git",
"author": "Google Inc.",
"license": "Apache2",
"private": true,
"devDependencies": {
"@11ty/eleventy": "0.10.0",
"@rollup/plugin-node-resolve": "7.1.1",
"esm": "3.2.25",
"gh-pages": "^2.0.1",
"lit-html": "1.2.1",
"marked": "0.8.2",
"rimraf": "^3.0.2",
"rollup": "2.3.2",
"rollup-plugin-terser": "5.3.0",
"statikk": "^1.1.1"
},
"scripts": {
"build": "rimraf devtools-protocol/ && node -r esm node_modules/.bin/eleventy && rollup -c rollup.config.js",
"prep": "bash prep-tot-protocol-files.sh",
"serve": "echo 'Open http://localhost:8696/devtools-protocol/ for built site'; statikk --port 8696 .",
"deploy": "gh-pages --dist devtools-protocol --repo git@github.com:ChromeDevTools/devtools-protocol.git --dotfiles --user \"devtools-bot <24444246+devtools-bot@users.noreply.github.com>\""
}
}