-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 997 Bytes
/
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
{
"name": "openbci-ganglion-js",
"version": "0.1.0",
"description": "Ganglion EEG JavaScript Library",
"main": "dist/ganglion.js",
"typings": "dist/ganglion.d.ts",
"repository": "https://github.com/openbci/openbci-ganglion-js",
"author": "AJ Keller <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"start": "node demo/fuse",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^20.0.0",
"fuse-box": "^2.0.0",
"jest": "^20.0.4",
"text-encoding": "^0.6.4",
"typescript": "^2.3.3"
},
"dependencies": {
"@types/text-encoding": "^0.0.30",
"@types/web-bluetooth": "^0.0.2",
"rxjs": "^5.4.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "<rootDir>/typescript-preprocessor.js"
},
"testMatch": [
"**/*.spec.ts"
]
}
}