forked from universalweb/Network
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.69 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
73
74
75
76
{
"name": "@sentivate/sentivate",
"description": "Sentivate Network Client, Server Module, UDSP, Universal Web Socket, & certificate generation. This serves as a service & browser prototype.",
"version": "1.3.0",
"main": "main.js",
"type": "script",
"scripts": {
"client": "nodemon client/index.js --watch client/",
"compressionTest": "nodemon scripts/compression.js --watch scripts/compression.js",
"cc": "nodemon ./client/createCertificate/index.js --watch ./client/createCertificate/",
"server": "nodemon ./serverApp/index.js --watch ./server/ --watch ./serverApp/",
"dis": "nodemon ./DIS/index.js --watch ./server/ --watch ./DIS/",
"components": "nodemon ./browser/components/index.js --watch ./browser/components/source/ --watch ./browser/components/index.js",
"simulate": "nodemon ./scripts/simulate.js --watch ./client/ --watch ./server/ --watch ./scripts/simulate.js --watch utilities/",
"certificates": "nodemon ./scripts/certificates.js --watch ./scripts/certificates.js --watch ./certificates/ --watch ./utilities/",
"start": "nodemon --watch ./index.html --watch ./client/ --watch ./browser/ --watch ./main.js --exec 'electron .'",
"electron": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"version": "auto-changelog -p --sort-commits date-desc && git add CHANGELOG.md"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "./maintenance/keepachangelog.hbs",
"unreleased": true,
"commitLimit": false
},
"author": "Sentivate",
"company": "Universal Web, Inc",
"dependencies": {
"chalk": "^4.1.0",
"eslint": "^7.16.0",
"figlet": "^1.5.0",
"is-valid-path": "^0.1.1",
"Lucy": "^2.3.1",
"msgpackr": "^1.0.2",
"node-watch": "^0.7.1",
"sequential-ids": "*",
"sodium-native": "^3.2.0",
"stream-chunker": "^1.2.8",
"truncate-utf8-bytes": "*",
"webtorrent": "^0.112.0"
},
"license": "ISC",
"devDependencies": {
"@ckeditor/ckeditor5-build-inline": "^24.0.0",
"@septdirworkshop/ukfontawesome": "^5.15.1",
"auto-changelog": "^2.2.1",
"babel-eslint": "*",
"docredux": "^2.1.2",
"electron": "^11.1.1",
"electron-builder": "^22.9.1",
"ractive": "^1.3.14",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"testatron": "^2.1.0",
"uikit": "^3.6.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sentivate/SentivateAlphaNetwork.git"
},
"bugs": {
"url": "https://github.com/sentivate/SentivateAlphaNetwork/issues"
},
"homepage": "https://github.com/sentivate/SentivateAlphaNetwork#readme",
"engines": {
"node": ">=12.9.1"
},
"appId": "universalWeb.browser",
"productName": "Universal Web Browser",
"mac": {
"category": "browser"
},
"postinstall": "electron-builder install-app-deps"
}