aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-08-22 00:12:17 +0300
committerGitHub <noreply@github.com>2019-08-22 00:12:17 +0300
commit6d5cb2611be73e4c3b0787ac00fe28e4c243417e (patch)
tree5b65999c40a916d0e4bb5f878b30cee236045e94 /package.json
parent03dd1ac6af558886acae1296832459827ade54c3 (diff)
parent8147b911dec725f50fb79e22dd149e13eca02d81 (diff)
downloadelectron-hot-reload-6d5cb2611be73e4c3b0787ac00fe28e4c243417e.tar.xz
electron-hot-reload-6d5cb2611be73e4c3b0787ac00fe28e4c243417e.zip
Merge pull request #1 from valentineus/develop
Develop
Diffstat (limited to 'package.json')
-rw-r--r--package.json51
1 files changed, 46 insertions, 5 deletions
diff --git a/package.json b/package.json
index 8770ad1..b2d2802 100644
--- a/package.json
+++ b/package.json
@@ -1,9 +1,50 @@
{
- "name": "electron-reloader",
- "version": "0.0.1",
+ "description": "It is a simple method to restart your application.",
+ "name": "electron-live-reload",
+ "version": "0.1.0",
"main": "dist/index.js",
- "repository": "git@github.com:valentineus/ts-electron-reloader.git",
- "author": "Valentin Popov <info@valentineus.link>",
+ "repository": "git@github.com:valentineus/electron-live-reload.git",
+ "author": {
+ "email": "info@valentineus.link",
+ "name": "Valentin Popov",
+ "url": "https://valentineus.link/"
+ },
"license": "MIT",
- "private": false
+ "private": false,
+ "keywords": [
+ "auto-reload",
+ "auto-restart",
+ "electron",
+ "live-reload",
+ "livereload",
+ "node",
+ "reload",
+ "reloader",
+ "restart",
+ "restarter"
+ ],
+ "scripts": {
+ "build": "yarn run build:plugin",
+ "build:application": "cd ./example/application && yarn run build",
+ "build:plugin": "tsc --pretty --project ./ --skipLibCheck",
+ "example": "yarn run example:build && yarn run example:run",
+ "example:build": "yarn run build && yarn run build:application",
+ "example:run": "cd ./example/application && yarn run start",
+ "lint": "tslint --format codeFrame --project ./",
+ "lint:fix": "yarn run lint --fix"
+ },
+ "devDependencies": {
+ "@types/node": "^12.7.2",
+ "electron": "^6.0.3",
+ "spectron": "^8.0.0",
+ "tslint": "^5.19.0",
+ "tslint-config-airbnb": "^5.11.1",
+ "tslint-consistent-codestyle": "^1.15.1",
+ "tslint-eslint-rules": "^5.4.0",
+ "tslint-microsoft-contrib": "^6.2.0",
+ "typescript": "^3.5.3"
+ },
+ "dependencies": {
+ "chokidar": "^3.0.2"
+ }
}