Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(638)

Side by Side Diff: third_party/WebKit/Source/devtools/package.json

Issue 2915883002: DevTools: prepare to unify Network and CPU throttling UI (Closed)
Patch Set: gs Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 "name": "chrome-devtools-frontend", 2 "name": "chrome-devtools-frontend",
3 "description": "Chrome DevTools UI", 3 "description": "Chrome DevTools UI",
4 "scripts": { 4 "scripts": {
5 "start": "node scripts/start_chrome_and_server.js", 5 "start": "node scripts/start_chrome_and_server.js",
6 "chrome": "node scripts/chrome_debug_launcher/launch_chrome.js", 6 "chrome": "node scripts/chrome_debug_launcher/launch_chrome.js",
7 "server": "node scripts/hosted_mode/server.js", 7 "server": "node scripts/hosted_mode/server.js",
8 "test": "node scripts/npm_test.js", 8 "test": "node scripts/npm_test.js",
9 "debug-test": "node scripts/npm_test.js --debug-devtools", 9 "debug-test": "node scripts/npm_test.js --debug-devtools",
10 "compat-test": "node scripts/npm_test.js --compat-protocol=1.2", 10 "compat-test": "node scripts/npm_test.js --compat-protocol=1.2",
11 "lint": "eslint front_end", 11 "lint": "eslint front_end",
12 "format": "git cl format --js .", 12 "format": "git cl format --js .",
13 "closure": "python scripts/compile_frontend.py", 13 "closure": "python scripts/compile_frontend.py",
14 "setup-dtrun": "cd scripts/devtools_run && npm link", 14 "setup-dtrun": "cd scripts/devtools_run && npm link",
15 "format-py": "yapf --exclude scripts/build/rjsmin.py -i --recursive scripts PRESUBMIT.py" 15 "format-py": "yapf --exclude scripts/build/rjsmin.py -i --recursive scripts PRESUBMIT.py",
16 "extract": "node scripts/extract_module/extract_module.js"
16 }, 17 },
17 "repository": { 18 "repository": {
18 "type": "git", 19 "type": "git",
19 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git" 20 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git"
20 }, 21 },
21 "keywords": [ 22 "keywords": [
22 "devtools", 23 "devtools",
23 "chrome", 24 "chrome",
24 "chromium", 25 "chromium",
25 "blink", 26 "blink",
26 "debugger" 27 "debugger"
27 ], 28 ],
28 "author": "The Chromium Authors", 29 "author": "The Chromium Authors",
29 "license": "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/ma ster/LICENSE", 30 "license": "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/ma ster/LICENSE",
30 "bugs": { 31 "bugs": {
31 "url": "https://bugs.chromium.org/p/chromium/issues/list?can=2&q=component:P latform%3EDevTools%20&sort=-opened&colspec=ID%20Stars%20Owner%20Summary%20Modifi ed%20Opened" 32 "url": "https://bugs.chromium.org/p/chromium/issues/list?can=2&q=component:P latform%3EDevTools%20&sort=-opened&colspec=ID%20Stars%20Owner%20Summary%20Modifi ed%20Opened"
32 }, 33 },
33 "homepage": "https://devtools.chrome.com", 34 "homepage": "https://devtools.chrome.com",
34 "devDependencies": { 35 "devDependencies": {
35 "eslint": "3.10.0" 36 "eslint": "3.10.0"
36 } 37 }
37 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698