-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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": "@conet-project/kloak-bridge",
"version": "1.34.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "UNLICENSED",
"scripts": {
"docs": "yarn run typedoc --name 'Kloak Bridge' --readme ./README-Template.md",
"build": "rollup --config",
"lint": "eslint './*.{js,ts}' --quiet",
"test": "jest --silent=false"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@types/openpgp": "^4.4.15",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"fake-indexeddb": "^3.1.2",
"jest": "^26.6.3",
"rollup": "^2.44.0",
"rollup-plugin-typescript2": "^0.30.0",
"text-encoding-utf-8": "^1.0.2",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typedoc": "^0.20.35",
"typedoc-plugin-markdown": "^3.6.1"
},
"dependencies": {
"buffer": "^6.0.3",
"core-js": "^3.10.0",
"dayjs": "^1.10.4",
"openpgp": "5.0.0-1",
"regenerator-runtime": "^0.13.7",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3",
"uuid": "^8.3.2",
"ws": "^7.4.5"
},
"files": [
"dist"
],
"jest": {
"setupFiles": [
"fake-indexeddb/auto"
]
}
}