This repository has been archived by the owner on Dec 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.53 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-template",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/konnectors/cozy-konnector-template.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",
"dev": "cozy-run-dev",
"standalone": "cozy-run-standalone",
"pretest": "npm run clean",
"test": "konitor testit .",
"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-template.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.11.2"
},
"devDependencies": {
"@symfony/webpack-encore": "^0.20.1",
"copy-webpack-plugin": "4.5.3",
"cozy-app-publish": "0.9.0",
"cozy-jobs-cli": "1.5.1",
"eslint": "5.7.0",
"eslint-config-cozy-app": "1.1.4",
"git-directory-deploy": "1.5.1",
"husky": "1.1.2",
"konitor": "0.10.0",
"svgo": "1.1.1",
"webpack": "4.21.0",
"webpack-cli": "3.1.2"
}
}