feat: add first version
parents
.editorconfig
0 → 100644
.gitignore
0 → 100644
.prettierignore
0 → 100644
.prettierrc
0 → 100644
.travis.yml
0 → 100644
CODEOWNERS
0 → 100644
CONTRIBUTING.md
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
assets/icon.png
0 → 100644
42.9 KB
babel.config.json
0 → 100644
github_deploy_key.enc
0 → 100644
File added
manifest.konnector
0 → 100644
package.json
0 → 100644
{ | ||
"name": "cozy-konnector-template", | ||
"version": "1.0.0", | ||
"description": "", | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:konnectors/cozy-konnector-template.git" | ||
}, | ||
"keywords": [], | ||
"author": "Cozy Cloud", | ||
"license": "AGPL-3.0", | ||
"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} --repo=${DEPLOY_REPOSITORY:-$npm_package_repository_url}", | ||
"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.54.0" | ||
}, | ||
"devDependencies": { | ||
"cozy-jobs-cli": "1.18.0", | ||
"cozy-konnector-build": "1.3.4" | ||
} | ||
} |
renovate.json
0 → 100644
src/index.js
0 → 100644
webpack.config.js
0 → 100644
yarn.lock
0 → 100644
This diff is collapsed.