forked from konnectors/cozy-konnector-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "cozy-konnector-google",
"version": "2.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/konnectors/cozy-konnector-google.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",
"token": "node ./googleHelper.js",
"dev": "cozy-konnector-dev",
"standalone": "cozy-run-standalone",
"pretest": "npm run clean",
"test": "konitor testit .",
"jest": "jest",
"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://[email protected]/konnectors/cozy-konnector-google.git}",
"cozyPublish": "cozy-app-publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})",
"travisDeployKey": "./bin/generate_travis_deploy_key"
},
"dependencies": {
"cozy-client": "6.9.0",
"cozy-konnector-libs": "4.14.12",
"googleapis": "36.0.0",
"json-loader": "0.5.7"
},
"devDependencies": {
"chalk": "2.4.2",
"clear": "0.1.0",
"configstore": "4.0.0",
"copy-webpack-plugin": "4.6.0",
"cozy-app-publish": "0.13.1",
"cozy-jobs-cli": "1.7.14",
"eslint": "5.15.1",
"eslint-config-cozy-app": "1.1.12",
"figlet": "1.2.1",
"git-directory-deploy": "1.5.1",
"husky": "1.3.1",
"jest": "23.6.0",
"konitor": "0.10.1",
"minimist": "1.2.0",
"mockdate": "2.0.2",
"svgo": "1.2.0",
"webpack": "4.29.6",
"webpack-cli": "3.2.3"
}
}