-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 KB
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-libs",
"description": "Sharing Helpers for Cozy Application Development",
"author": "Cozy",
"license": "MIT",
"homepage": "https://github.com/cozy/cozy-libs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-libs.git"
},
"bugs": {
"url": "https://github.com/cozy/cozy-libs/issues"
},
"scripts": {
"lint": "eslint",
"lint:md": "remark . -o",
"test": "lerna run --concurrency 1 test",
"build": "DISABLE_V8_COMPILE_CACHE=1 lerna run --scope cozy-device-helper build && lerna run --scope cozy-minilog build && lerna run --ignore cozy-device-helper --ignore cozy-minilog build",
"check-constraints": "node scripts/check-packages-constraints.js"
},
"devDependencies": {
"@babel/cli": "7.16.8",
"@babel/core": "7.16.12",
"@babel/runtime": "7.18.6",
"babel-loader": "8.2.3",
"babel-preset-cozy-app": "^1.5.0",
"eslint": "10.0.2",
"husky": "1.3.1",
"lerna": "8.1.8",
"node-gyp": "^11.1.0",
"prettier": "^2.8.4",
"remark-cli": "9.0.0",
"typescript": "^5.5.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"./config/commitlint-config-cozy"
]
},
"workspaces": {
"packages": [
"packages/*",
"config/*"
],
"nohoist": [
"**/cozy-ui"
]
},
"packageManager": "yarn@4.7.0"
}