aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: e4451e5ced87f35e914fcdd677d7b33328a0604e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "description": "It is a simple method to restart your application.",
  "name": "electron-hot-reload",
  "version": "0.1.1",
  "main": "dist/index.js",
  "repository": "git@github.com:valentineus/electron-hot-reload.git",
  "author": {
    "email": "info@valentineus.link",
    "name": "Valentin Popov",
    "url": "https://valentineus.link/"
  },
  "license": "MIT",
  "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",
    "test": "echo \"Error: no test specified\" && exit 0"
  },
  "devDependencies": {
    "@types/node": "^12.7.3",
    "electron": "^6.0.7",
    "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.6.2"
  },
  "dependencies": {
    "chokidar": "^3.0.2"
  }
}