Skip to content

Commit

Permalink
Moved everything from lighthouse-core to ligthouse
Browse files Browse the repository at this point in the history
  • Loading branch information
wardpeet committed Jul 26, 2016
1 parent da09ffb commit 1b998a3
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 53 deletions.
43 changes: 0 additions & 43 deletions _install_deps.js

This file was deleted.

2 changes: 1 addition & 1 deletion lighthouse-core/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/* eslint-env mocha */

const pkg = require('../package.json');
const pkg = require('../../package.json');
const assert = require('assert');

describe('Module Tests', function() {
Expand Down
35 changes: 26 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,47 @@
},
"scripts": {
"//": "// passing through tasks to core",
"postinstall": "node _install_deps.js",
"lint": "eslint .",
"smoke": "lighthouse-cli/scripts/run-smoke-tests.sh",
"coverage": "node $(echo $__node_harmony) $(npm bin)/istanbul cover -x \"**/third_party/**\" _mocha -- $(find */test -name '*.js') --timeout 60000",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"start": "node ./lighthouse-cli/index.js",
"test": "npm run lint --silent && npm run unit && npm run closure",
"cli-unit": "mocha $(echo $__node_harmony) $(find lighthouse-cli/test -name '*.js') --timeout 60000",
"unit": "npm run cli-unit && npm --prefix ./lighthouse-core run unit",
"cli-unit": "mocha $(echo $__node_harmony) $(find lighthouse-cli/test lighthouse-core/test -name '*.js') --timeout 60000",
"unit": "npm run cli-unit",
"//":
"// passing through tasks to core",
"closure": "npm --prefix ./lighthouse-core run closure",
"watch": "npm --prefix ./lighthouse-core run watch",
"chrome": "npm --prefix ./lighthouse-core run chrome"
"closure": "cd lighthouse-core && closure/closure-type-checking.js",
"watch": "find lighthouse-core lighthouse-cli -name '*.js' -not -path '*/node_modules/*' -not -path '*/extension/*' | entr npm run unit",
"chrome": "lighthouse-core/scripts/launch-chrome.sh"
},
"devDependencies": {
"mocha": "^2.3.3",
"eslint": "^2.4.0",
"coveralls": "^2.11.9",
"eslint-config-google": "^0.4.0",
"eslint": "^2.4.0",
"google-closure-compiler": "^20160517.0.0",
"gulp-replace": "^0.5.4",
"gulp-util": "^3.0.7",
"gulp": "^3.9.1",
"istanbul": "^0.4.3",
"coveralls": "^2.11.9"
"jsdom": "^9.0.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.3",
"request": "^2.69.0",
"walk": "^2.3.9"
},
"dependencies": {
"axe-core": "^1.1.1",
"chrome-devtools-frontend": "1.0.401423",
"chrome-remote-interface": "^0.11.0",
"debug": "^2.2.0",
"devtools-timeline-model": "1.1.6",
"gl-matrix": "2.3.2",
"handlebars": "^4.0.5",
"json-stringify-safe": "^5.0.1",
"jszip": "2.6.0",
"semver": ">=4.3.3",
"speedline": "0.2.2",
"yargs": "3.30.0"
},
"repository": "googlechrome/lighthouse",
Expand Down

0 comments on commit 1b998a3

Please sign in to comment.