forked from cozy/cozy-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 809 Bytes
/
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
{
"name": "cozy-libs",
"description": "Sharing Helpers for Cozy Application Development",
"author": "Cozy",
"license": "MIT",
"homepage": "https://github.com/cozy/cozy-libs#readme",
"private": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-libs.git"
},
"bugs": {
"url": "https://github.com/cozy/cozy-libs/issues"
},
"scripts": {
"lint": "eslint . --ext js,jsx",
"test": "lerna run --parallel test",
"build": "lerna run --parallel build"
},
"devDependencies": {
"husky": "1.3.1",
"lerna": "2.11.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"./packages/commitlint-config-cozy"
]
},
"workspaces": [
"packages/*"
]
}