Comparar commits
8 Commits
| Autor | SHA1 | Data | |
|---|---|---|---|
| 8ec07fcb27 | |||
| d45742442c | |||
| 69accdd607 | |||
| cc89e8747c | |||
| 9494010e79 | |||
| 887d98bfcf | |||
| 83726ae6b0 | |||
| c3cbc6da09 |
+1
@@ -0,0 +1 @@
|
||||
webbci.pwstegman.me
|
||||
+10
@@ -5,10 +5,20 @@ JavaScript based EEG signal processing
|
||||
|
||||
## Installation
|
||||
|
||||
For the latest stable release
|
||||
|
||||
```bash
|
||||
npm install webbci
|
||||
```
|
||||
|
||||
For the latest unstable development release
|
||||
|
||||
```bash
|
||||
npm install webbci@dev
|
||||
```
|
||||
|
||||
Documentation for the development release can be found at https://github.com/pwstegman/WebBCI/tree/dev
|
||||
|
||||
## Getting Started
|
||||
|
||||
```javascript
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
webbci.pwstegman.me
|
||||
gerado
+30
-13
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "webbci",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.3",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
@@ -220,17 +220,39 @@
|
||||
"dev": true
|
||||
},
|
||||
"mathjs": {
|
||||
"version": "3.16.3",
|
||||
"resolved": "https://registry.npmjs.org/mathjs/-/mathjs-3.16.3.tgz",
|
||||
"integrity": "sha512-lb7Q0+4RCFdAJk/+01nDpRuQfoPm2EXmAy9LSa8nXzAQjeTqeLELdsQsRlMBDvJ53KXC7IOTHdhBOwZd7Q6FjQ==",
|
||||
"version": "3.19.0",
|
||||
"resolved": "https://registry.npmjs.org/mathjs/-/mathjs-3.19.0.tgz",
|
||||
"integrity": "sha512-E1cKiSclqkPyrndVaE1gQ/IqveCRvTGBDcM+AT6lDK0tTAzUpI3kHdsq/9HKNRn0+v+i2m6arZ6PxBtATXQlxw==",
|
||||
"requires": {
|
||||
"complex.js": "2.0.4",
|
||||
"decimal.js": "7.2.3",
|
||||
"fraction.js": "4.0.2",
|
||||
"decimal.js": "9.0.1",
|
||||
"fraction.js": "4.0.4",
|
||||
"javascript-natural-sort": "0.7.1",
|
||||
"seed-random": "2.2.0",
|
||||
"tiny-emitter": "2.0.0",
|
||||
"typed-function": "0.10.5"
|
||||
"tiny-emitter": "2.0.2",
|
||||
"typed-function": "0.10.6"
|
||||
},
|
||||
"dependencies": {
|
||||
"decimal.js": {
|
||||
"version": "9.0.1",
|
||||
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-9.0.1.tgz",
|
||||
"integrity": "sha512-2h0iKbJwnImBk4TGk7CG1xadoA0g3LDPlQhQzbZ221zvG0p2YVUedbKIPsOZXKZGx6YmZMJKYOalpCMxSdDqTQ=="
|
||||
},
|
||||
"fraction.js": {
|
||||
"version": "4.0.4",
|
||||
"resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.0.4.tgz",
|
||||
"integrity": "sha512-aK/oGatyYLTtXRHjfEsytX5fieeR5H4s8sLorzcT12taFS+dbMZejnvm9gRa8mZAPwci24ucjq9epDyaq5u8Iw=="
|
||||
},
|
||||
"tiny-emitter": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.0.2.tgz",
|
||||
"integrity": "sha512-2NM0auVBGft5tee/OxP4PI3d8WItkDM+fPnaRAVo6xTDI2knbz9eC5ArWGqtGlYqiH3RU5yMpdyTTO7MguC4ow=="
|
||||
},
|
||||
"typed-function": {
|
||||
"version": "0.10.6",
|
||||
"resolved": "https://registry.npmjs.org/typed-function/-/typed-function-0.10.6.tgz",
|
||||
"integrity": "sha512-PYtsDjxyW3vq7Itn2RMz0cn6CrbybIY6XC2i9c1q1o/H94QW8B1Pf3wSsbBDOCMpN1i5jDRrlDsLXFaqXBpfHQ=="
|
||||
}
|
||||
}
|
||||
},
|
||||
"minimatch": {
|
||||
@@ -438,11 +460,6 @@
|
||||
"resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.0.0.tgz",
|
||||
"integrity": "sha1-utMnrbGAS0KiMa+nQVMr2ITNCa0="
|
||||
},
|
||||
"typed-function": {
|
||||
"version": "0.10.5",
|
||||
"resolved": "https://registry.npmjs.org/typed-function/-/typed-function-0.10.5.tgz",
|
||||
"integrity": "sha1-Lg8Yq9BlIZ+raUpEamXG0ZgYMsA="
|
||||
},
|
||||
"underscore": {
|
||||
"version": "1.8.3",
|
||||
"resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz",
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "webbci",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.5",
|
||||
"description": "JavaScript based EEG processing tool",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
@@ -10,7 +10,7 @@
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"fft.js": "^4.0.3",
|
||||
"mathjs": "^3.16.3",
|
||||
"mathjs": "^3.19.0",
|
||||
"node-osc": "^2.1.0",
|
||||
"pw-csp": "^1.0.0",
|
||||
"pw-lda": "^1.0.0"
|
||||
|
||||
Referência em uma Nova Issue
Bloquear um usuário