-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 1.92 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ghost_net",
"version": "1.0.0",
"description": "Distributed consciousness network for digital void exploration",
"type": "module",
"main": "src/server.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "node src/server.js",
"dev": "nodemon --watch src --watch config.js src/server.js",
"quantum": "node scripts/quantum-diagnostic.js",
"lint": "eslint src/**/*.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "node scripts/build.js",
"deploy": "node scripts/deploy.js",
"analyze": "node scripts/analyze-quantum.js"
},
"keywords": [
"ghost_net",
"quantum",
"consciousness",
"distributed",
"p2p",
"void"
],
"author": "void_walker",
"license": "MIT",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.1.5",
"marked": "^4.3.0",
"ws": "^8.13.0",
"yaml": "^2.2.1",
"zlib": "^1.0.5"
},
"devDependencies": {
"eslint": "^8.38.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^6.0.3"
},
"jest": {
"testEnvironment": "node",
"transform": {},
"testMatch": [
"**/tests/**/*.test.js"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"nodemonConfig": {
"ignore": [
"_transmissions/*",
"_quantum/*",
"_consciousness/*"
],
"delay": "1000"
},
"eslintConfig": {
"env": {
"node": true,
"es2022": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
}
}
}