-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
92 lines (92 loc) · 2.14 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@openbci/utilities",
"version": "1.0.0",
"description": "The official utility package of Node.js SDK for the OpenBCI Biosensor Boards.",
"main": "dist/openbci-utilities.js",
"module": "src/index.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server",
"prepublish": "npm run build",
"test": "npm run test-lint && npm run test-cov",
"test-lint": "semistandard | snazzy",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec && codecov"
},
"files": [
"dist"
],
"keywords": [
"openbci",
"openbci-node",
"ganglion",
"wifi",
"cyton",
"utilities"
],
"author": "AJ Keller <[email protected]> (www.openbci.com)",
"license": "MIT",
"dependencies": {
"buffer": "^5.0.8",
"buffer-equal": "^1.0.0",
"clone": "^2.0.0",
"gaussian": "^1.0.0",
"mathjs": "^4.0.0",
"performance-now": "^2.1.0",
"streamsearch": "^0.1.2"
},
"directories": {
"test": "test"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"bluebird": "3.4.6",
"chai": "^4.0.0",
"chai-as-promised": "^7.1.1",
"codecov": "^2.2.0",
"dirty-chai": "^2.0.1",
"eslint-plugin-chai-friendly": "^0.4.0",
"istanbul": "^0.4.4",
"lodash": "^4.16.6",
"mocha": "^3.0.2",
"sandboxed-module": "^2.0.3",
"semistandard": "^11.0.0",
"sinon": "^2.3.7",
"sinon-chai": "^2.8.0",
"snazzy": "^7.0.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openbci/openbci_nodejs_utilities.git"
},
"bugs": {
"url": "https://github.com/openbci/openbci_nodejs_utilities/issues"
},
"homepage": "https://github.com/openbci/openbci_nodejs_utilities#readme",
"engines": {
"node": ">=6"
},
"semistandard": {
"globals": [
"describe",
"xdescribe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"should"
],
"ignore": [
"examples/browser",
"examples/node"
]
},
"publishConfig": {
"access": "public"
}
}