-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
71 lines (71 loc) · 2.26 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
{
"name": "@neurosity/pipes",
"description": "Digital signal processing utilities as RxJS operators for working with EEG data in Node and the Browser",
"version": "5.2.1",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/browser/eeg-pipes.js",
"typings": "dist/esm/index.d.ts",
"scripts": {
"prebuild": "npm run clean",
"build": "npm run build:cjs && npm run build:esm && npm run build:browser && npm run build:electron && npm run build:docs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json && npm run build:esm:bundle",
"build:esm:bundle": "esbuild ./dist/esm/index.js --outfile=./dist/esm/eeg-pipes.mjs --bundle --format=esm",
"build:browser": "parcel build ./src/index.ts --target browser --out-dir dist/browser --out-file eeg-pipes.js",
"build:electron": "parcel build ./src/index.ts --target electron --out-dir dist/electron",
"build:docs": "node ./node_modules/.bin/esdoc",
"serve:docs": "lite-server --baseDir=./docs",
"start": "tsc -w",
"clean": "del dist",
"examples": "ts-node ./examples",
"prepublishOnly": "npm run build",
"postpublish": "npm run deploy:docs",
"deploy:docs": "npm run build:docs && gh-pages-deploy -- 'DOCS: build'"
},
"gh-pages-deploy": {
"staticpath": "docs"
},
"files": [
"dist"
],
"author": "Alex Castillo <[email protected]> (https://neurosity.co)",
"license": "MIT",
"keywords": [
"neurosity",
"crown",
"dsp",
"eeg",
"bci",
"rxjs"
],
"repository": {
"type": "git",
"url": "[email protected]:neurosity/eeg-pipes.git"
},
"bugs": {
"url": "https://github.com/neurosity/eeg-pipes/issues"
},
"dependencies": {
"@neurosity/dsp": "^1.0.1",
"fili": "^2.0.3",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@types/node": "^10.12.10",
"copyfiles": "^2.4.0",
"del-cli": "^1.1.0",
"esbuild": "^0.15.10",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"esdoc-typescript-plugin": "^1.0.1",
"gh-pages-deploy": "^0.5.1",
"inquirer": "^6.2.0",
"lite-server": "^2.4.0",
"parcel": "^1.10.3",
"parcel-bundler": "^1.10.3",
"ts-node": "^7.0.1",
"typescript": "^4.8.3"
}
}