-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "cozy-konnector-toutatice",
"version": "1.5.0",
"description": "",
"repository": {
"type": "git",
"url": "[email protected]:konnectors/toutatice.git"
},
"keywords": [],
"author": "Cozy Cloud",
"license": "AGPL-3.0",
"eslintConfig": {
"extends": [
"cozy-app"
]
},
"eslintIgnore": [
"build"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"scripts": {
"start": "node ./src/index.js",
"dev": "cozy-konnector-dev",
"standalone": "cozy-konnector-standalone",
"pretest": "npm run clean",
"jest": "jest",
"clean": "rm -rf ./data",
"build": "webpack",
"token": "NODE_ENV=development node scripts/fetchToutaticeToken.js",
"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}) --space academie_rennes --verbose",
"travisDeployKey": "./bin/generate_travis_deploy_key"
},
"dependencies": {
"cozy-client": "27.26.3",
"cozy-konnector-libs": "5.12.1",
"jest": "27.5.1",
"json-loader": "0.5.7",
"lodash": "4.17.21",
"node-fetch": "2.6.7",
"p-limit": "3.1.0"
},
"devDependencies": {
"cozy-jobs-cli": "2.4.4",
"cozy-konnector-build": "1.7.0",
"mockdate": "3.0.5",
"open": "8.4.0",
"randomstring": "1.1.5"
}
}