-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 871 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
{
"name": "@xogeny/mat-parser",
"version": "0.4.2",
"description": "A parser for MATLAB v4 files",
"main": "lib/src/index.js",
"typings": "lib/src/index.d.ts",
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"test": "jest"
},
"files": [
"lib/**/*"
],
"keywords": [
"MATLAB"
],
"bin": {
"dsres": "./lib/src/scripts/dsres.js"
},
"author": "Michael M. Tiller",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^24.0.23",
"@types/minimatch": "^2.0.29",
"@types/msgpack5": "^3.4.0",
"@types/node": "^12.12.11",
"@types/yargs": "^6.6.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
},
"dependencies": {
"debug": "^4.1.1",
"msgpack5": "^3.4.1",
"rxjs": "^6.5.3",
"yargs": "^7.1.0"
}
}