Skip to content

Commit

Permalink
Drop the minimum required Node version from 6 to 4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
enlight committed Sep 22, 2016
1 parent ba3a750 commit 55e8308
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ with minimum effort on your part.
## Prerequisites

- NPM v3
- NodeJS v6
- NodeJS v4.5 (or later)
- [`electron`][electron-npm], or [`electron-prebuilt`][electron-prebuilt-npm], or [`electron-prebuilt-compile`][electron-prebuilt-compile-npm]
- [`electron-rebuild`][electron-rebuild-npm] (optional)

Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"name": "electron-inspector",
"version": "0.1.2",
"engines": {
"node": ">=4.5.0"
},
"description": "Debugger UI for the main Electron process",
"main": "lib/index.js",
"bin": {
Expand Down
6 changes: 5 additions & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"target": "es5",
"noImplicitAny": true,
"sourceMap": false,
"lib": [
"es5",
"es2015.promise"
],
"outDir": "../lib"
},
"files": [
Expand Down

0 comments on commit 55e8308

Please sign in to comment.