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

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

Issue 2976833002: Script migration (Closed)
Patch Set: transformed Created 3 years, 5 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 "extract": "node scripts/extract_module/extract_module.js",
17 "check-gn": "node scripts/check_gn.js", 17 "check-gn": "node scripts/check_gn.js",
18 "check-json": "node scripts/json_validator/validate_module_json.js", 18 "check-json": "node scripts/json_validator/validate_module_json.js",
19 "check-descriptors": "node scripts/check_application_descriptors.js" 19 "check-descriptors": "node scripts/check_application_descriptors.js",
20 "migrate": "node scripts/migrate_test/migrate_test.js"
20 }, 21 },
21 "repository": { 22 "repository": {
22 "type": "git", 23 "type": "git",
23 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git" 24 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git"
24 }, 25 },
25 "keywords": [ 26 "keywords": [
26 "devtools", 27 "devtools",
27 "chrome", 28 "chrome",
28 "chromium", 29 "chromium",
29 "blink", 30 "blink",
30 "debugger" 31 "debugger"
31 ], 32 ],
32 "author": "The Chromium Authors", 33 "author": "The Chromium Authors",
33 "license": "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/ma ster/LICENSE", 34 "license": "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/ma ster/LICENSE",
34 "bugs": { 35 "bugs": {
35 "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" 36 "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"
36 }, 37 },
37 "homepage": "https://devtools.chrome.com", 38 "homepage": "https://devtools.chrome.com",
38 "devDependencies": { 39 "devDependencies": {
39 "ajv": "^5.1.5", 40 "ajv": "^5.1.5",
40 "eslint": "3.10.0" 41 "eslint": "3.10.0"
41 } 42 }
42 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698