-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "aether-client",
"version": "1.0.2",
"main": "build/aether_client.js",
"types": "build/aether_client.d.ts",
"files": [
"build"
],
"dependencies": {
"@types/libsodium-wrappers": "^0.7.14",
"assert": "^2.1.0",
"bcryptjs": "^3.0.2",
"bufferutil": "^4.0.8",
"crc-32": "^1.2.2",
"dns-query": "^0.11.2",
"eslint-formatter-unix": "^9.0.1",
"express": "^4.19.2",
"isomorphic-ws": "^5.0.0",
"libsodium-wrappers": "^0.7.15",
"nodemon": "^3.1.0",
"utf-8-validate": "^6.0.4",
"util": "^0.12.5"
},
"publishConfig": {
"registry": "http://nexus.aethernet.io/npm-private/"
},
"scripts": {
"build": "tsc",
"test": "jest",
"protocol": "ts-node generator/AetherProtocolPlugin.ts",
"test:p2p": "jest aether_point_to_point.test.ts",
"test:browser": "npx webpack --config webpack.config.mjs --env buildTarget=test && CHROME_BIN=/usr/bin/yandex-browser npx karma start karma.conf.js",
"test:smarthub": "jest smarthub.test.ts",
"pub": "npm run build && npm pack && curl -T aether-client-1.0.2.tgz -u deploy:1930 https://nexus.aethernet.io/npm-private/aether-client-1.0.2.tgz"
},
"overrides": {
"chokidar": "3.5.3",
"glob-parent": "6.0.2"
},
"devDependencies": {
"@testdeck/mocha": "^0.3.3",
"@types/bcryptjs": "^3.0.0",
"@types/chai": "^4.3.20",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.17.4",
"@types/mocha": "^10.0.10",
"@types/node": "^20.13.0",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"chai": "^5.1.1",
"eslint": "^9.39.2",
"glob": "^10.0.0",
"jest": "^30.2.0",
"jest-mock-extended": "^4.0.0",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"ts-jest": "^29.4.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsx": "^4.15.6",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.1.0"
}
}