-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (67 loc) · 1.97 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
{
"name": "secure-p2p",
"version": "1.0.1",
"description": "Extended Peers with hybrid security",
"homepage": "https://github.com/bosskabouter/SecurePeerJS",
"bugs": "https://github.com/bosskabouter/SecurePeerJS/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/bosskabouter/SecurePeerJS.git"
},
"contributors": [
],
"scripts": {
"test": " NODE_OPTIONS=--experimental-vm-modules jest",
"prepublish": "npm run build",
"lint": "eslint .",
"buildKeyFirst": "cd ./packages/secure-communication-kit && npm run build",
"build": "npm run buildKeyFirst && npm run build:all",
"build:all": "lerna run build --stream --parallel",
"start": "concurrently \"npm run dev:client1\" \"npm run dev:client2\" \"npm run dev:server\"",
"dev:client1": "cd ./examples/securePushClient/ && npm run dev",
"dev:client2": "cd ./examples/securePeerClient/ && npm run dev",
"dev:server": "cd ./examples/secureP2pServer/ && npm run dev"
},
"keywords": [
"peer",
"p2p",
"peerjs",
"security",
"hybrid",
"encrypt",
"sign",
"identity",
"authentic",
"verification",
"bip32",
"bip39",
"mnemonic"
],
"author": "Paul Kuit",
"license": "ISC",
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@types/jest": "^29.5.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"lerna": "^6.6.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"$schema": "https://json.schemastore.org/package"
}