forked from andrewjaykeller/OpenBCI_NodeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 826 Bytes
/
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
{
"name": "openbci-sdk",
"version": "0.1.0",
"description": "A fully NodeJS based API for the OpenBCI board connecting to the hardware directly over serial",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "mocha test"
},
"keywords": [
"openbci",
"openbci-node"
],
"author": "AJ Keller <[email protected]> (www.openbci.com)",
"license": "MIT",
"dependencies": {
"serialport": "^2.0.2"
},
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openbci/openbci-js-sdk.git"
},
"bugs": {
"url": "https://github.com/openbci/openbci-js-sdk/issues"
},
"homepage": "https://github.com/openbci/openbci-js-sdk#readme"
}