| OLD | NEW |
| 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 "extract": "node scripts/extract_module/extract_module.js", |
| 17 "check-gn": "node scripts/check_gn.js" |
| 17 }, | 18 }, |
| 18 "repository": { | 19 "repository": { |
| 19 "type": "git", | 20 "type": "git", |
| 20 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git" | 21 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git" |
| 21 }, | 22 }, |
| 22 "keywords": [ | 23 "keywords": [ |
| 23 "devtools", | 24 "devtools", |
| 24 "chrome", | 25 "chrome", |
| 25 "chromium", | 26 "chromium", |
| 26 "blink", | 27 "blink", |
| 27 "debugger" | 28 "debugger" |
| 28 ], | 29 ], |
| 29 "author": "The Chromium Authors", | 30 "author": "The Chromium Authors", |
| 30 "license": "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/ma
ster/LICENSE", | 31 "license": "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/ma
ster/LICENSE", |
| 31 "bugs": { | 32 "bugs": { |
| 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" | 33 "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" |
| 33 }, | 34 }, |
| 34 "homepage": "https://devtools.chrome.com", | 35 "homepage": "https://devtools.chrome.com", |
| 35 "devDependencies": { | 36 "devDependencies": { |
| 36 "eslint": "3.10.0" | 37 "eslint": "3.10.0" |
| 37 } | 38 } |
| 38 } | 39 } |
| OLD | NEW |