-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "cozy-konnector-silae",
"version": "1.3.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/konnectors/silae.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",
"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:konnectors/silae.git}",
"cozyPublish": "cozy-app-publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})",
"travisDeployKey": "./bin/generate_travis_deploy_key"
},
"dependencies": {
"buffer-to-stream": "^1.0.0",
"cozy-konnector-libs": "4.56.4",
"soap": "0.32.0"
},
"devDependencies": {
"copy-webpack-plugin": "6.2.1",
"cozy-app-publish": "0.24.0",
"cozy-jobs-cli": "1.20.2",
"eslint-config-cozy-app": "1.5.0",
"git-directory-deploy": "1.5.1",
"husky": "4.3.0",
"svgo": "1.3.2",
"webpack": "4.44.1",
"webpack-cli": "3.3.12"
}
}