-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 896 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 896 Bytes
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,
"type": "module",
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-handlebars": "^1.0.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"lit-html": "^3.3.1",
"marked": "^16.1.2",
"rimraf": "^6.0.1",
"rollup": "^4.46.2",
"statikk": "^2.2.2"
},
"scripts": {
"build": "rimraf devtools-protocol/ && node node_modules/.bin/eleventy && rollup -c rollup.config.js",
"prep": "bash prep-tot-protocol-files.sh",
"test": "bash test/primitive_tests.sh",
"serve": "echo 'Open http://localhost:8696/devtools-protocol/ for built site'; statikk --port 8696 ."
}
}