-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "cozy-realtime",
"version": "5.6.3",
"description": "Realtime interactions with cozy-stack using Websocket",
"main": "dist/index.js",
"browser": "dist/index.browser.js",
"author": "Cozy",
"license": "MIT",
"homepage": "https://docs.cozy.io/en/cozy-realtime/README/",
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-libs.git"
},
"bugs": {
"url": "https://github.com/cozy/cozy-libs/issues"
},
"scripts": {
"test": "jest",
"build": "babel src -d dist",
"prepublishOnly": "yarn build",
"watch": "yarn build --watch"
},
"peerDependencies": {
"cozy-client": ">=13.15.1"
},
"devDependencies": {
"@babel/cli": "7.16.8",
"babel-plugin-rewire": "1.2.0",
"babel-preset-cozy-app": "^2.8.1",
"cozy-client": "13.21.0",
"jest-cli": "24.9.0",
"mock-socket": "9.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/",
"<rootDir>/coverage/"
],
"collectCoverageFrom": [
"<rootDir>/src/*.js",
"!<rootDir>/node_modules/",
"!<rootDir>/test/"
]
},
"dependencies": {
"@cozy/minilog": "^1.0.0"
}
}