Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "name": "luci", | |
| 3 "version": "0.0.0", | |
| 4 "homepage": "https://github.com/luci/luci-go", | |
| 5 "author": "The LUCI Authors", | |
| 6 "license": "Apache License, Version 2.0", | |
| 2 "private": true, | 7 "private": true, |
| 8 "dependencies": {}, | |
| 3 "devDependencies": { | 9 "devDependencies": { |
| 4 "bower": "~1.7.9", | 10 "bower": "~1.7.9", |
| 5 "browser-sync": "^2.7.7", | 11 "browser-sync": "^2.7.7", |
| 6 "connect-history-api-fallback": "^1.1.0", | 12 "connect-history-api-fallback": "^1.1.0", |
| 7 "del": "^2.0.2", | 13 "del": "^2.0.2", |
| 8 "glob-all": "^3.0.1", | 14 "glob-all": "^3.0.1", |
| 9 "gulp": "^3.8.5", | 15 "gulp": "^3.9.1", |
| 10 "gulp-autoprefixer": "^3.1.0", | 16 "gulp-autoprefixer": "^3.1.0", |
| 11 "gulp-cache": "^0.4.0", | 17 "gulp-cache": "^0.4.0", |
| 12 "gulp-changed": "^1.0.0", | 18 "gulp-changed": "^1.0.0", |
| 13 "gulp-clang-format": "^1.0.23", | 19 "gulp-clang-format": "^1.0.23", |
| 20 "gulp-clean-css": "^3.5.0", | |
| 14 "gulp-debug": "^3.0.0", | 21 "gulp-debug": "^3.0.0", |
| 15 "gulp-gh-pages": "^0.5.4", | 22 "gulp-gh-pages": "^0.5.4", |
| 16 "gulp-html-extract": "^0.1.0", | 23 "gulp-html-extract": "^0.1.0", |
| 24 "gulp-htmlmin": "^3.0.0", | |
| 17 "gulp-if": "^2.0.2", | 25 "gulp-if": "^2.0.2", |
| 18 "gulp-imagemin": "^2.2.1", | 26 "gulp-imagemin": "^2.2.1", |
| 19 "gulp-jscs": "^3.0.0", | 27 "gulp-jscs": "^3.0.0", |
| 20 "gulp-jscs-stylish": "^1.1.2", | 28 "gulp-jscs-stylish": "^1.1.2", |
| 21 "gulp-jshint": "^1.6.3", | 29 "gulp-jshint": "^1.6.3", |
| 22 "gulp-load-plugins": "^1.1.0", | 30 "gulp-load-plugins": "^1.1.0", |
| 23 "gulp-minify-css": "^1.2.1", | |
| 24 "gulp-minify-html": "^1.0.2", | |
| 25 "gulp-replace": "^0.5.4", | 31 "gulp-replace": "^0.5.4", |
| 26 "gulp-size": "^2.0.0", | 32 "gulp-size": "^2.0.0", |
| 27 "gulp-sourcemaps": "^2.4.0", | 33 "gulp-sourcemaps": "^2.6.0", |
| 28 "gulp-tslint": "^7.0.1", | 34 "gulp-tslint": "^7.0.1", |
| 29 "gulp-typescript": "^3.1.3", | 35 "gulp-typescript": "^3.1.3", |
| 30 "gulp-uglify": "^1.2.0", | 36 "gulp-uglify": "^1.2.0", |
| 31 "gulp-useref": "^2.1.0", | 37 "gulp-useref": "^2.1.0", |
| 32 "gulp-vulcanize": "^6.0.0", | 38 "gulp-vulcanize": "^6.0.0", |
| 33 "hydrolysis": "^1.24.1", | 39 "hydrolysis": "^1.24.1", |
| 34 "jshint-stylish": "^2.0.0", | 40 "jshint-stylish": "^2.0.0", |
| 35 "merge-stream": "^1.0.0", | 41 "merge-stream": "^1.0.0", |
| 36 "run-sequence": "^1.0.2", | 42 "run-sequence": "^1.0.2", |
| 37 "tslint": "^4.2.0", | 43 "tslint": "^4.2.0", |
| 38 "typescript": "~2.3", | 44 "typescript": "^2.4", |
|
iannucci
2017/07/01 03:46:50
Do we want this to break when 2.5 is released? (le
dnj
2017/07/01 15:16:06
hmm, you're probably right. I'll pin this to 2.4 s
| |
| 39 "vulcanize": "^1.15.4", | 45 "vulcanize": "^1.15.4", |
| 40 "yargs": "~4.8.0" | 46 "yargs": "~4.8.0" |
| 41 }, | 47 }, |
| 42 "scripts": { | 48 "scripts": { |
| 43 "test": "gulp test:local", | 49 "test": "gulp test:local", |
| 44 "start": "gulp serve", | 50 "start": "gulp serve", |
| 45 "lint": "gulp lint" | 51 "lint": "gulp lint" |
| 46 }, | 52 }, |
| 47 "engines": { | 53 "engines": { |
| 48 "node": ">=0.10.0" | 54 "node": ">=0.10.0" |
| 49 } | 55 } |
| 50 } | 56 } |
| OLD | NEW |