c2097670e7
Plug most runaway tasks, and some other issues, raised by the new infrastructure.
67 linhas
1.5 KiB
JSON
67 linhas
1.5 KiB
JSON
{
|
|
"name": "openbci",
|
|
"version": "1.4.0",
|
|
"description": "The official Node.js SDK for the OpenBCI Biosensor Board.",
|
|
"main": "openBCIBoard",
|
|
"scripts": {
|
|
"start": "node index",
|
|
"test": "semistandard | snazzy && mocha test",
|
|
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec && codecov"
|
|
},
|
|
"keywords": [
|
|
"openbci",
|
|
"openbci-node"
|
|
],
|
|
"author": "AJ Keller <aj@pushtheworld.us> (www.openbci.com)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"buffer-equal": "^1.0.0",
|
|
"gaussian": "^1.0.0",
|
|
"mathjs": "^3.3.0",
|
|
"performance-now": "^0.2.0",
|
|
"serialport": "4.0.1",
|
|
"sntp": "^2.0.0",
|
|
"streamsearch": "^0.1.2"
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"devDependencies": {
|
|
"bluebird": "3.4.6",
|
|
"chai": "^3.4.1",
|
|
"chai-as-promised": "^5.2.0",
|
|
"codecov": "^1.0.1",
|
|
"istanbul": "^0.4.4",
|
|
"mocha": "^3.0.2",
|
|
"sandboxed-module": "^2.0.3",
|
|
"semistandard": "^9.0.0",
|
|
"sinon": "^1.17.2",
|
|
"sinon-chai": "^2.8.0",
|
|
"snazzy": "^5.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/openbci/openbci_nodejs.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/openbci/openbci_nodejs/issues"
|
|
},
|
|
"homepage": "https://github.com/openbci/openbci_nodejs#readme",
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"semistandard": {
|
|
"globals": [
|
|
"describe",
|
|
"context",
|
|
"before",
|
|
"beforeEach",
|
|
"after",
|
|
"afterEach",
|
|
"it",
|
|
"expect",
|
|
"should"
|
|
]
|
|
}
|
|
}
|