-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
80 lines (80 loc) · 1.98 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
77
78
79
80
{
"name": "@openbci/cyton",
"version": "2.0.1",
"description": "The official Node.js SDK for the OpenBCI Cyton with Dongle.",
"main": "openBCICyton.js",
"scripts": {
"start": "node openBCICyton.js",
"test": "semistandard | snazzy && mocha test",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec && codecov",
"test-lint": "semistandard | snazzy"
},
"keywords": [
"openbci",
"openbci-node"
],
"author": "AJ Keller <[email protected]> (www.openbci.com)",
"license": "MIT",
"dependencies": {
"buffer-equal": "^1.0.0",
"lodash": "^4.17.4",
"mathjs": "^4.0.1",
"@openbci/cyton": "^2.0.1",
"@openbci/utilities": "^1.0.0",
"performance-now": "^2.1.0",
"safe-buffer": "^5.1.1",
"serialport": "^6.1.1",
"sntp": "^2.0.2"
},
"directories": {
"test": "test"
},
"devDependencies": {
"bluebird": "3.5.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"codecov": "^2.1.0",
"dirty-chai": "^2.0.1",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.4",
"mocha": "^3.4.2",
"sandboxed-module": "^2.0.3",
"semistandard": "^11.0.0",
"sinon": "^1.17.7",
"sinon-as-promised": "^4.0.3",
"sinon-chai": "^2.11.0",
"snazzy": "^7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openbci/openbci_nodejs_cyton.git"
},
"bugs": {
"url": "https://github.com/openbci/openbci_nodejs_cyton/issues"
},
"homepage": "https://github.com/openbci/openbci_nodejs_cyton#readme",
"engines": {
"node": ">=6.0.0"
},
"semistandard": {
"globals": [
"describe",
"xdescribe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"should"
]
},
"publishConfig": {
"access": "public"
}
}