-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 990 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 990 Bytes
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
{
"name": "cozy-konnector-libs-monorepo",
"private": true,
"main": "index.js",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"babel-preset-env": "1.7.0",
"cross-env": "7.0.3",
"eslint": "^8.35.0",
"eslint-config-cozy-app": "6.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"lerna": "8.2.1",
"prettier": "^2.8.4"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"scripts": {
"prepublish": "npm run lint",
"publish": "lerna publish",
"bootstrap": "lerna bootstrap",
"lint": "eslint .",
"test": "yarn lerna run test"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/packages/.*/dist"
],
"testEnvironment": "node"
},
"packageManager": "yarn@4.7.0"
}