-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.47 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.47 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "spreadable",
"version": "0.3.12",
"description": "Decentralized network mechanism",
"bin": {
"spreadable": "./bin/index.js"
},
"type": "module",
"main": "./src/index.js",
"author": {
"name": "Alexander Balasyan",
"email": "mywebstreet@gmail.com"
},
"homepage": "https://github.com/ortexx/spreadable",
"scripts": {
"eslint": "eslint src bin test",
"test": "mocha ./test/index.js --timeout=30000",
"build-client": "webpack --config=webpack.client.js",
"build-client-prod": "cross-env NODE_ENV=production webpack --config=webpack.client.js",
"build-ci": "npm run eslint && npm run test && npm run build-client-prod"
},
"husky": {
"hooks": {
"pre-commit": "npm run build-ci && git add ./dist/*"
}
},
"keywords": [
"spreadable",
"protocol",
"network",
"distributed",
"decentralized",
"decentralization",
"distribution",
"information",
"data"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-import-assertions": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"babel-loader": "^9.1.3",
"chai": "^5.0.0",
"cross-env": "^7.0.3",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.56.0",
"eslint-webpack-plugin": "^4.0.1",
"husky": "^4.3.8",
"mini-css-extract-plugin": "^2.7.7",
"mocha": "^10.2.0",
"node-mocks-http": "^1.14.1",
"node-polyfill-webpack-plugin": "^3.0.0",
"selfsigned": "^2.4.1",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"basic-auth": "^2.0.1",
"bytes": "^3.1.2",
"chalk": "^5.3.0",
"cli-spinner": "^0.2.10",
"compression": "^1.7.4",
"cookies": "^0.9.1",
"cors": "^2.8.5",
"cron": "^3.1.6",
"express": "^4.18.2",
"form-data": "^4.0.0",
"formdata-node": "^6.0.3",
"fs-extra": "^11.2.0",
"get-port": "^7.0.0",
"ip6addr": "^0.2.5",
"is-png": "^3.0.1",
"lodash-es": "^4.17.21",
"lokijs": "^1.5.12",
"ms": "^2.1.3",
"node-fetch": "^2.7.0",
"sharp": "^0.33.2",
"signal-exit": "^4.1.0",
"tcp-port-used": "^1.0.2",
"text-to-svg": "^3.1.5",
"validate-ip-node": "^1.0.8",
"yargs": "^17.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ortexx/spreadable"
},
"engines": {
"node": ">=20.0.0"
}
}