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

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

Issue 2413563002: DevTools: add "npm test" to run tests by fetching content shells (Closed)
Patch Set: nits Created 4 years, 2 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": "echo \"Error: no test specified\" && exit 1", 8 "test": "node scripts/npm_test.js",
9 "test:build": "node scripts/npm_test.js --build-only",
10 "test:run": "node scripts/npm_test.js --test-only",
9 "lint": "eslint -c front_end/.eslintrc.js --ignore-path front_end/.eslintign ore front_end" 11 "lint": "eslint -c front_end/.eslintrc.js --ignore-path front_end/.eslintign ore front_end"
10 }, 12 },
11 "repository": { 13 "repository": {
12 "type": "git", 14 "type": "git",
13 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git" 15 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git"
14 }, 16 },
15 "keywords": [ 17 "keywords": [
16 "devtools", 18 "devtools",
17 "chrome", 19 "chrome",
18 "chromium", 20 "chromium",
19 "blink", 21 "blink",
20 "debugger" 22 "debugger"
21 ], 23 ],
22 "author": "The Chromium Authors", 24 "author": "The Chromium Authors",
23 "license": "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/ma ster/LICENSE", 25 "license": "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/ma ster/LICENSE",
24 "bugs": { 26 "bugs": {
25 "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" 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"
26 }, 28 },
27 "homepage": "https://devtools.chrome.com" 29 "homepage": "https://devtools.chrome.com"
28 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698