-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 850 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 850 Bytes
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": "@gnss/rtcm",
"version": "0.1.5",
"description": "RTCM 3.3 decoder/encoder",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/node-ntrip/rtcm.git"
},
"scripts": {
"build": "tsc",
"test": "jest"
},
"files": [
"build"
],
"engines": {
"node": ">=11.0.0"
},
"keywords": [
"rtcm",
"decoder",
"encoder",
"parser"
],
"author": "Nebojša Cvetković <nebkat@gmail.com> (http://cvetkovic.ie)",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.3.3",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"bit-buffer-ts": "^0.8.1",
"reflect-metadata": "^0.1.13"
},
"readmeFilename": "README.md"
}