cozy-konnector-netentreprise/package.json

53 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "cozy-konnector-template",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/konnectors/cozy-konnector-template.git"
},
"keywords": [],
"author": "Cozy Cloud",
"license": "AGPL-3.0",
"main": "./src/index.js",
"eslintConfig": {
"extends": [
"eslint-config-cozy-app"
]
},
"eslintIgnore": [
"build"
],
"scripts": {
"start": "node ./src/index.js",
"dev": "cozy-run-dev",
"standalone": "cozy-run-standalone",
"pretest": "npm run clean",
"test": "konitor testit .",
"check": "konitor check .",
"clean": "rm -rf ./data",
"build": "webpack",
"precommit": "yarn lint",
"lint": "eslint --fix .",
"deploy": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build} --repo=${DEPLOY_REPOSITORY:-https://$GITHUB_TOKEN@github.com/konnectors/cozy-konnector-template.git}",
"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.10.2"
},
"devDependencies": {
"copy-webpack-plugin": "4.5.2",
"cozy-app-publish": "0.4.1-beta.3",
"cozy-jobs-cli": "1.4.9",
"eslint": "5.2.0",
"eslint-config-cozy-app": "0.10.0",
"git-directory-deploy": "1.5.1",
"husky": "0.14.3",
"konitor": "0.9.0",
"svgo": "1.0.5",
"webpack": "4.16.3",
"webpack-cli": "3.1.0"
}
}