-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "nmea-simple",
"version": "3.3.0",
"homepage": "https://github.com/101100/nmea-simple",
"description": "NMEA 0183 sentence parser and encoder",
"author": {
"name": "Jason Heard",
"email": "jasonpheard@gmail.com"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"nmea",
"0183",
"nmea-0183",
"gps",
"parser",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/101100/nmea-simple"
},
"bugs": {
"url": "https://github.com/101100/nmea-simple/issues"
},
"scripts": {
"build": "npm run lint && tsc",
"lint": "tslint *.ts codecs/*.ts examples/*.ts tests/*.ts",
"lint-fix": "npm run lint -- --fix",
"prepublish": "npm run test",
"test": "npm run build && mocha -R tap dist/tests"
},
"engines": {
"node": ">= 8.0.0"
},
"devDependencies": {
"@serialport/parser-readline": "^8.0.6",
"@types/mocha": "^7.0.2",
"@types/serialport": "^8.0.0",
"mocha": "^7.1.1",
"serialport": "^8.0.7",
"should": "^13.2.3",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {}
}