mirror of
https://github.com/gundb/panic-server.git
synced 2026-05-07 03:00:26 -04:00
Major changes: panic client and server have been separated into two separate projects. This prevents a bunch of overhead if you're installing panic on each machine you're testing against. It also helps with separation of concerns and prevents assumptive tests. Another major change: express was becoming complicated quick for what I needed. Instead of trying to re-implement websockets over http, I'm switching over to socket.io to allow for easier full duplex data streams. Many of the patches weren't necessary when client code was removed (like Function.parse, Object.keys, Gun extensions, etc.)
37 lines
827 B
JSON
37 lines
827 B
JSON
{
|
|
"name": "panic",
|
|
"version": "0.1.0",
|
|
"description": "Test gun against a storm of requests",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "jasmine",
|
|
"start": "node server",
|
|
"build": "webpack --watch"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/PsychoLlama/panic.git"
|
|
},
|
|
"keywords": [
|
|
"gun",
|
|
"gundb",
|
|
"test",
|
|
"testing",
|
|
"distributed"
|
|
],
|
|
"author": "Jesse Gibson <jesse@gundb.io> (http://techllama.com)",
|
|
"license": "(Zlib OR MIT OR Apache-2.0)",
|
|
"bugs": {
|
|
"url": "https://github.com/PsychoLlama/panic/issues"
|
|
},
|
|
"homepage": "https://github.com/PsychoLlama/panic#readme",
|
|
"dependencies": {
|
|
"object-assign-deep": "0.0.4",
|
|
"socket.io": "^1.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"jasmine": "^2.4.1",
|
|
"webpack": "^1.12.14"
|
|
}
|
|
}
|