aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 20830200d0382a9008d2b83623aeb3d55e22fe26 (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
{
  "name": "electron-reloader",
  "version": "0.0.1",
  "main": "dist/index.js",
  "repository": "git@github.com:valentineus/ts-electron-reloader.git",
  "author": "Valentin Popov <info@valentineus.link>",
  "license": "MIT",
  "private": false,
  "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.18.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"
  }
}