forked from neurosity/eeg-pipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "@neurosity/pipes",
"description": "Lettable RxJS operators for working with EEG data in Node and the Browser",
"version": "3.2.3",
"main": "dist/eeg-pipes.umd.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"start": "webpack-dev-server",
"prepublishOnly": "npm run build",
"postpublish": "npm run docs:deploy",
"docs:build": "node ./node_modules/.bin/esdoc",
"docs:deploy": "npm run docs:build && gh-pages-deploy -- 'DOCS: build'"
},
"gh-pages-deploy": {
"staticpath": "docs"
},
"files": [
"dist"
],
"author": "Neurosity, Inc",
"license": "MIT",
"keywords": [
"neurosity",
"eeg",
"openbci",
"neurojs",
"rxjs",
"cyton",
"ganglion"
],
"repository": {
"type": "git",
"url": "[email protected]:neurosity/eeg-pipes.git"
},
"bugs": {
"url": "https://github.com/neurosity/eeg-pipes/issues"
},
"dependencies": {
"dsp.js": "git+https://github.com/eagerworks/dsp.js.git",
"fili": "^2.0.1",
"rxjs": "^6.3.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-plugin-dynamic-import-webpack": "^1.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"csv-loader": "^2.1.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.18.1",
"gh-pages-deploy": "^0.5.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^2.11.3",
"webpack-node-externals": "^1.6.0",
"webpack-rxjs-externals": "^1.1.0"
}
}