-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
69 lines (69 loc) · 1.93 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "etebase",
"version": "0.43.0",
"description": "Etebase TypeScript API for the web and node",
"type": "commonjs",
"main": "dist/lib-cjs/Etebase.js",
"module": "dist/lib/Etebase.js",
"browser": "dist/umd/Etebase.js",
"files": [
"dist/**/*"
],
"types": "dist/lib/Etebase.d.ts",
"scripts": {
"build": "tsc && tsc -m commonjs --outDir dist/lib-cjs && webpack",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"test": "jest",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint"
},
"dependencies": {
"@msgpack/msgpack": "^1.12.2",
"@types/urijs": "^1.15.38",
"argon2-webworker": "^0.1.1",
"isomorphic-ws": "^4.0.1",
"libsodium-wrappers": "0.7.6",
"node-fetch": "^2.6.0",
"reconnecting-websocket": "^4.4.0",
"urijs": "^1.19.1",
"ws": "^7.4.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@types/jest": "^24.0.22",
"@types/libsodium-wrappers": "^0.7.7",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"@typescript-eslint/typescript-estree": "^2.6.1",
"babel-jest": "^25.3.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"core-js": "3",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"react-native-sodium": "^0.3.8",
"ts-loader": "^8.0.6",
"typescript": "^3.9.6",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0"
},
"jest": {
"testPathIgnorePatterns": [
"dist"
]
},
"keywords": [
"Etebase",
"encryption",
"crypto",
"synchronization"
],
"author": "Tom Hacohen <[email protected]> (https://stosb.com)",
"repository": "https://www.github.com/etesync/etesync-js",
"license": "BSD-3-Clause"
}