Socialify

Folder ..

Viewing package.json
104 lines (104 loc) • 2.8 KB

  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
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
{
  "name": "password-manager",
  "productName": "Password Manager",
  "version": "0.1.0",
  "description": "Lightweight & Fast Password Manager",
  "repository": "https://github.com/BackSlash-Linux/password-manager",
  "dependencies": {
    "@swiftyapp/cryptor": "^1.0.4",
    "classnames": "^2.2.6",
    "dotenv-webpack": "^1.7.0",
    "electron": "^7.2.4",
    "electron-log": "^3.0.9",
    "electron-unhandled": "^3.0.1",
    "electron-util": "^0.13.0",
    "fs-extra": "^8.1.0",
    "generate-password": "^1.4.2",
    "googleapis": "^45.0.0",
    "luxon": "^1.21.3",
    "mousetrap": "^1.6.3",
    "nucleon": "^1.0.16",
    "parse-domain": "^2.3.4",
    "password-validator": "^5.0.3",
    "react": "^16.12.0",
    "react-dom": "^16.12.0",
    "react-redux": "^7.1.3",
    "react-tagsinput": "^3.19.0",
    "redux": "^4.0.4",
    "redux-thunk": "^2.3.0",
    "shortid": "^2.2.15"
  },
  "scripts": {
    "lint": "npx eslint --color src",
    "start": "NODE_ENV=development bozon start",
    "testrun": "yarn lint && NODE_ENV=test npx jest test/units && NODE_ENV=test bozon test test/features",
    "test": "bozon package linux",
    "package-mac": "bozon package mac",
    "package-linux": "bozon package linux"
  },
  "author": {
    "name": "BackSlash Linux",
    "email": "[email protected]"
  },
  "devDependencies": {
    "@babel/core": "^7.7.4",
    "@babel/preset-env": "^7.7.4",
    "@babel/preset-react": "^7.7.4",
    "babel-jest": "^24.9.0",
    "babel-loader": "^8.0.6",
    "bozon": "^0.10.4",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "css-loader": "^3.2.0",
    "eslint": "^6.7.2",
    "eslint-plugin-jest": "^23.1.1",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-prettier": "^3.1.1",
    "eslint-plugin-react": "^7.17.0",
    "file-loader": "^5.0.2",
    "jest": "^24.9.0",
    "mocha": "^6.2.2",
    "node-sass": "^4.13.1",
    "prettier": "^1.19.1",
    "ps-node": "^0.1.6",
    "react-svg-loader": "^3.0.3",
    "sass-loader": "^8.0.0",
    "spectron": "^9.0.0",
    "style-loader": "^1.0.1"
  },
  "build": {
    "appId": "com.backslashlinux.passwordmanager",
    "productName": "Password Manager",
    "copyright": "Copyright © 2019 BackSlash Linux",
    "fileAssociations": [
      {
        "ext": "pwmx",
        "role": "None",
        "icon": "build/fileicon.icns",
        "mimeType": "application/vnd.pwmx"
      }
    ],
    "publish": [
      {
        "provider": "github",
        "owner": "BackSlash-Linux",
        "repo": "password-manager"
      }
    ],
    "win": {
      "icon": "build/icon.ico"
    },
    "linux": {
      "category": "Utilities",
      "target": [
        "deb",
        "rpm",
        "AppImage"
      ]
    },
    "mac": {
      "icon": "build/icon.icns",
      "category": "your.app.category.type"
    }
  }
}