| 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 "lint": "eslint front_end", | 10 "lint": "eslint front_end", |
| 10 "format": "node scripts/format.js", | 11 "format": "node scripts/format.js", |
| 11 "closure": "python scripts/compile_frontend.py" | 12 "closure": "python scripts/compile_frontend.py" |
| 12 }, | 13 }, |
| 13 "repository": { | 14 "repository": { |
| 14 "type": "git", | 15 "type": "git", |
| 15 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git" | 16 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git" |
| 16 }, | 17 }, |
| 17 "keywords": [ | 18 "keywords": [ |
| 18 "devtools", | 19 "devtools", |
| 19 "chrome", | 20 "chrome", |
| 20 "chromium", | 21 "chromium", |
| 21 "blink", | 22 "blink", |
| 22 "debugger" | 23 "debugger" |
| 23 ], | 24 ], |
| 24 "author": "The Chromium Authors", | 25 "author": "The Chromium Authors", |
| 25 "license": "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/ma
ster/LICENSE", | 26 "license": "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/ma
ster/LICENSE", |
| 26 "bugs": { | 27 "bugs": { |
| 27 "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" | 28 "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" |
| 28 }, | 29 }, |
| 29 "homepage": "https://devtools.chrome.com", | 30 "homepage": "https://devtools.chrome.com", |
| 30 "devDependencies": { | 31 "devDependencies": { |
| 31 "eslint": "3.10.0", | 32 "eslint": "3.10.0", |
| 32 "clang-format": "1.0.45", | 33 "clang-format": "1.0.45", |
| 33 "async": "1.5.2", | 34 "async": "1.5.2", |
| 34 "globby": "6.0.0" | 35 "globby": "6.0.0" |
| 35 } | 36 } |
| 36 } | 37 } |
| OLD | NEW |