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