Skip to content
Snippets Groups Projects
package.json 1.47 KiB
Newer Older
  • Learn to ignore specific revisions
  • Hugo NOUTS's avatar
    Hugo NOUTS committed
    {
      "name": "enedis-sge-konnector",
      "version": "1.0.0",
      "description": "",
      "repository": {
        "type": "https",
        "url": "https://forge.grandlyon.com/web-et-numerique/llle_project/enedis-sge-konnector"
      },
      "keywords": [],
      "author": "Cozy Cloud",
      "license": "AGPL-3.0",
      "main": "./src/index.js",
      "eslintConfig": {
        "extends": [
          "cozy-app"
        ]
      },
      "eslintIgnore": [
        "build",
        "data"
      ],
      "husky": {
        "hooks": {
          "pre-commit": "yarn lint"
        }
      },
      "scripts": {
        "start": "node ./src/index.js",
        "dev": "cozy-konnector-dev",
        "standalone": "cozy-konnector-standalone",
        "pretest": "npm run clean",
        "clean": "rm -rf ./data",
        "build": "webpack",
        "lint": "eslint --fix .",
        "deploy": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build}",
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
        "deploy-dev": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build-dev}",
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
        "cozyPublish": "cozy-app-publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})",
        "travisDeployKey": "./bin/generate_travis_deploy_key"
      },
      "dependencies": {
        "cozy-konnector-libs": "4.52.1",
        "easy-soap-request": "^4.7.0",
        "moment": "^2.29.3",
        "moment-timezone": "^0.5.34",
        "xml2js": "^0.4.23"
      },
      "devDependencies": {
        "cozy-jobs-cli": "1.17.6",
        "cozy-konnector-build": "1.3.1",
        "eslint-config-cozy-app": "1.3.3",
        "eslint-plugin-prettier": "^4.0.0",
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
      }
    }