-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "ais-decoder-ts",
"version": "3.0.8",
"description": "Ais Decoder (TypeScript, Node 12.17.0)",
"main": "dist/lib/index.js",
"scripts": {
"setup": "npm install",
"test-only": "tape dist/test/**/*.test.js",
"test": "npm run build && tape dist/test/**/*.test.js",
"build": "rm -rf ./dist && tsc",
"example": "npm run build && node dist/test/example.js",
"prepublish": "npm run compile",
"copy_fixture": "cp -rf ./src/test/fixture ./dist/test/fixture",
"compile": "tsc",
"postinstall": "npm run build",
"parse": "tsc && node ./dist/bin/parse.js"
},
"keywords": [
"AIS",
"Ais-Decoder",
"Ocean",
"AIVDM",
"AIVDO",
"NMEA",
"Ocean",
"GPRMC",
"GPGGA",
"BSVDM",
"ABVDM"
],
"author": "Doron Segal",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/node": "^14.0.10",
"@types/tape": "^4.13.0",
"tape": "^5.0.1",
"typescript": "^3.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doron2402/ais-protocol-decoding.git"
},
"bugs": {
"url": "https://github.com/doron2402/ais-protocol-decoding/issues"
},
"homepage": "https://github.com/doron2402/ais-protocol-decoding#readme",
"engines": {
"node": ">=8.16.2"
}
}