Skip to content
Snippets Groups Projects
package.json 1.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • Romain CREY's avatar
    Romain CREY committed
    {
    
      "name": "egl",
    
      "version": "1.0.2",
    
    Romain CREY's avatar
    Romain CREY committed
      "description": "",
      "repository": {
        "type": "git",
        "url": "git+https://forge.grandlyon.com/web-et-numerique/llle_project/egl-konnector.git"
      },
      "keywords": [],
    
      "author": "Grand Lyon",
    
    Romain CREY's avatar
    Romain CREY committed
      "license": "AGPL-3.0",
      "main": "./src/index.js",
      "eslintConfig": {
        "extends": [
          "cozy-app"
        ]
      },
      "eslintIgnore": [
        "build"
      ],
      "husky": {
        "hooks": {
          "pre-commit": "yarn lint"
        }
      },
      "scripts": {
        "start": "node ./src/index.js",
        "dev": "cozy-konnector-dev",
        "standalone": "cozy-konnector-standalone",
        "pretest": "npm run clean",
        "test": "konitor testit .",
        "check": "konitor check .",
        "clean": "rm -rf ./data",
        "build": "webpack",
        "lint": "eslint --fix .",
        "deploy": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build} --repo=${DEPLOY_REPOSITORY:-https://forge.grandlyon.com/web-et-numerique/llle_project/egl-konnector.git}",
    
        "deploy-dev": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build-dev} --repo=${DEPLOY_REPOSITORY:-https://forge.grandlyon.com/web-et-numerique/llle_project/egl-konnector.git}",
    
    Romain CREY's avatar
    Romain CREY committed
        "cozyPublish": "cozy-app-publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})",
        "travisDeployKey": "./bin/generate_travis_deploy_key"
      },
      "dependencies": {
    
    Romain CREY's avatar
    Romain CREY committed
      },
      "devDependencies": {
    
    Romain CREY's avatar
    Romain CREY committed
        "eslint": "5.16.0",
    
    Romain CREY's avatar
    Romain CREY committed
        "konitor": "0.10.2",
    
    Romain CREY's avatar
    Romain CREY committed
      }
    }