This repository has been archived by the owner on Sep 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "Boursorama",
"version": "1.1.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/orandin/cozy-konnector-bank-boursorama.git"
},
"keywords": ["cozy cloud", "konnector-bank", "boursorama"],
"author": "Simon Delberghe",
"license": "AGPL-3.0",
"main": "./src/index.js",
"eslintConfig": {
"extends": [
"cozy-app"
]
},
"eslintIgnore": [
"build",
"docs"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"scripts": {
"start": "node ./src/index.js",
"dev": "cozy-konnector-dev",
"standalone": "cozy-konnector-standalone",
"pretest": "npm run clean",
"docs": "jsdoc -c .jsdoc_config.json",
"test": "konitor testit .",
"check": "konitor check .",
"clean": "rm -rf ./data",
"build": "webpack",
"lint": "eslint --fix .",
"deploy": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build} --repo=${DEPLOY_REPOSITORY:-git@github.com:orandin/cozy-konnector-bank-boursorama.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.18.7",
"moment": "2.24.0",
"pngjs": "3.4.0"
},
"devDependencies": {
"copy-webpack-plugin": "5.0.4",
"cozy-app-publish": "0.16.4",
"cozy-jobs-cli": "1.9.3",
"eslint": "5.16.0",
"eslint-config-cozy-app": "1.2.0",
"eslint-plugin-prettier": "3.1.0",
"git-directory-deploy": "1.5.1",
"husky": "1.3.1",
"konitor": "0.10.2",
"svgo": "1.3.0",
"webpack": "4.39.1",
"webpack-cli": "3.3.6",
"jsdoc": "3.5.5"
}
}