69 linhas
1.6 KiB
JSON
69 linhas
1.6 KiB
JSON
{
|
|
"name": "openbci",
|
|
"version": "1.5.2",
|
|
"description": "The official Node.js SDK for the OpenBCI Biosensor Board.",
|
|
"main": "openBCIBoard",
|
|
"scripts": {
|
|
"lint": "semistandard | snazzy",
|
|
"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": "^2.1.0",
|
|
"serialport": "4.0.7",
|
|
"sntp": "^2.0.0",
|
|
"streamsearch": "^0.1.2"
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"devDependencies": {
|
|
"bluebird": "3.5.0",
|
|
"chai": "^3.4.1",
|
|
"chai-as-promised": "^6.0.0",
|
|
"codecov": "^2.1.0",
|
|
"istanbul": "^0.4.4",
|
|
"mocha": "^3.0.2",
|
|
"sandboxed-module": "^2.0.3",
|
|
"semistandard": "^10.0.0",
|
|
"sinon": "^2.1.0",
|
|
"sinon-as-promised": "^4.0.2",
|
|
"sinon-chai": "^2.8.0",
|
|
"snazzy": "^6.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"
|
|
]
|
|
}
|
|
}
|