forked from pwstegman/bci.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.66 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "bcijs",
"version": "1.8.0",
"description": "BCI.js - Brain Computer Interfaces (BCIs) with JavaScript",
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"test": "npm run build && nyc mocha --require \"./test/tests/node-config.js\" --reporter min \"test/tests/**/*.test.js\"",
"test-dist": "npm run build && gulp test-dist",
"build": "gulp build",
"dist": "webpack",
"docs-md": "gulp docs-md",
"docs-html": "gulp docs-html",
"docs": "npm run docs-html && npm run docs-md",
"prepare": "npm run build && npm run dist",
"prepublishOnly": "npm run test && npm run docs"
},
"author": "Pierce Stegman <[email protected]> (https://github.com/pwstegman)",
"license": "MIT",
"dependencies": {
"csvtojson": "^1.1.12",
"easy-table": "^1.1.1",
"edfjs": "^0.2.0",
"fast-csv": "^2.5.0",
"fft.js": "^4.0.3",
"mathjs": "^6.6.5",
"node-osc": "^2.1.0",
"numeric": "^1.2.6",
"pw-csp": "^1.0.1",
"pw-lda": "^1.1.0",
"pw-stat": "^1.0.1"
},
"files": [
"dist/",
"lib/",
"src/",
"browser.js",
"index.js",
"docs/docs/api.md",
"docs/docs/deprecated.md"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pwstegman/bcijs.git"
},
"keywords": [
"bci",
"bci.js",
"eeg",
"signal processing",
"DSP",
"spectral estimation",
"signal separation",
"bandpower",
"welch",
"periodogram",
"ICA",
"CSP",
"LDA",
"math",
"machine learning"
],
"bugs": {
"url": "https://github.com/pwstegman/bcijs/issues"
},
"homepage": "https://bci.js.org/",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"fs-then-native": "^2.0.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-header": "^2.0.9",
"gulp-hub": "^4.2.0",
"gulp-jsdoc3": "^2.0.0",
"gulp-pug": "^4.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.2",
"gulp-uglify-es": "^1.0.1",
"jsdoc": "^3.6.4",
"jsdoc-to-markdown": "^5.0.3",
"mocaccino": "^4.1.2",
"mocha": "^7.1.2",
"moment": "^2.25.3",
"nyc": "^15.0.1",
"pug": "^2.0.4",
"readable-stream": "^3.6.0",
"terser-webpack-plugin": "^2.3.6",
"tmp": "0.0.33",
"upath": "^1.2.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"sideEffects": false
}