Skip to content
Snippets Groups Projects
package.json 1.89 KiB
Newer Older
  • Learn to ignore specific revisions
  • Hugo NOUTS's avatar
    Hugo NOUTS committed
    {
    
    build-token's avatar
    build-token committed
      "name": "enedissgegrandlyon",
    
      "version": "1.1.3",
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
      "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"
      ],
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
      "husky": {
        "hooks": {
          "pre-commit": "yarn lint"
        }
      },
    
    build-token's avatar
    build-token committed
      "jest": {
    
        "setupFiles": [
          "./setupTests.js"
        ]
    
    build-token's avatar
    build-token committed
      },
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
      "scripts": {
    
        "build": "webpack",
        "clean": "rm -rf ./data",
        "cozyPublish": "cozy-app-publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})",
        "deploy-dev": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build-dev}",
        "deploy": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build}",
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
        "dev": "cozy-konnector-dev",
    
        "lint": "eslint --fix .",
    
        "onDeleteAccount:standalone": "cozy-konnector-standalone src/onDeleteAccount.js",
        "onDeleteAccount": "cozy-konnector-dev src/onDeleteAccount.js",
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
        "pretest": "npm run clean",
    
        "release": "standard-version --no-verify",
        "standalone": "cozy-konnector-standalone",
        "start": "node ./src/index.js",
        "test:cov": "jest --coverage",
        "test": "jest",
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
        "travisDeployKey": "./bin/generate_travis_deploy_key"
      },
      "dependencies": {
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
        "moment": "^2.29.3",
        "moment-timezone": "^0.5.34",
        "xml2js": "^0.4.23"
      },
      "devDependencies": {
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
      }
    }