forked from konnectors/libs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (35 loc) · 783 Bytes
/
package.json
File metadata and controls
36 lines (35 loc) · 783 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
{
"name": "cozy-konnector-libs-monorepo",
"private": true,
"main": "index.js",
"workspaces": [
"packages/*"
],
"devDependencies": {
"babel-preset-env": "1.7.0",
"cross-env": "6.0.3",
"eslint-config-cozy-app": "1.3.3",
"eslint-plugin-jsdoc": "15.12.2",
"lerna": "3.18.3",
"lerna-changelog": "0.8.2"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"scripts": {
"prepublish": "npm run lint",
"publish": "lerna publish",
"bootstrap": "lerna bootstrap",
"lint": "eslint . --fix",
"test": "cross-env LOG_LEVEL=info jest"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/packages/.*/dist"
],
"testEnvironment": "node"
},
"dependencies": {}
}