|
1234567891011121314151617181920212223242526272829 |
- {
- "name": "cozy-konnector-template",
- "version": "1.0.0",
- "description": "",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/cozy/cozy-konnector-template.git"
- },
- "keywords": [],
- "author": "",
- "license": "AGPL-3.0",
- "dependencies": {
- "cozy-konnector-libs": "^3.0.0"
- },
- "scripts": {
- "start": "node index.js",
- "dev": "cozy-konnector-dev",
- "standalone": "cozy-konnector-standalone",
- "build": "webpack",
- "lint": "standard --fix konnector.js",
- "deploy:travis": "git-directory-deploy --username <YOUR_GH_USERNAME> --email <YOUR_EMAIL> --directory build/ --repo=https://$GITHUB_TOKEN@github.com/<USERNAME_GH>/<SLUG_GH>.git",
- "deploy": "git-directory-deploy --directory build/ --branch build --repo=https://github.com/cozy/cozy-konnector-template.git"
- },
- "devDependencies": {
- "copy-webpack-plugin": "^4.0.1",
- "git-directory-deploy": "^1.5.1",
- "webpack": "^3"
- }
- }
|