-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
76 lines (76 loc) · 1.9 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@openbci/ganglion",
"version": "2.0.0",
"description": "The official Node.js SDK for the OpenBCI Ganglion Biosensor Board.",
"main": "openBCIGanglion.js",
"scripts": {
"connect-test": "node examples/ganglionConnectionTest/ganglionConnectionTest.js",
"docs": "jsdoc2md openBCIGanglion.js",
"server": "node examples/ganglionServer/ganglionServer.js",
"test": "mocha test",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec && codecov",
"test-lint": "prettier"
},
"keywords": [
"openbci",
"openbci-node",
"ganglion"
],
"author": "AJ Keller <[email protected]> (www.openbci.com)",
"license": "MIT",
"dependencies": {
"@openbci/utilities": "^1.0.0",
"buffer": "^5.0.8",
"buffer-equal": "^1.0.0",
"clone": "^2.0.0",
"lodash": "^4.16.6",
"noble-mac": "https://github.com/Timeular/noble-mac.git",
"serialport": "^7.0.2"
},
"directories": {
"test": "test"
},
"devDependencies": {
"bluebird": "3.4.6",
"buffer-equal": "^1.0.0",
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"codecov": "^1.0.1",
"istanbul": "^0.4.4",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^3.0.2",
"prettier": "^1.15.2",
"sandboxed-module": "^2.0.3",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0",
"snazzy": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openbci/openbci_nodejs_ganglion.git"
},
"bugs": {
"url": "https://github.com/openbci/openbci_nodejs_ganglion/issues"
},
"homepage": "https://github.com/openbci/openbci_nodejs_ganglion#readme",
"engines": {
"node": ">=6 <=9"
},
"semistandard": {
"globals": [
"describe",
"xdescribe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"should"
]
},
"publishConfig": {
"access": "public"
}
}