-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thomas Runte
committed
Feb 18, 2017
1 parent
8e263d9
commit 3207476
Showing
4 changed files
with
38 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,38 @@ | ||
{ | ||
"name": "AisParser", | ||
"name": "aisparser", | ||
"version": "0.0.1", | ||
"private": false, | ||
"description" : "parser for NMEA0183 AIS messages", | ||
"keywords" : "parser AIS NMEA NMEA0183", | ||
"repository" : "https://github.com/samothx/AisParser.git", | ||
"bugs" : { | ||
"url" : "https://github.com/samothx/AisParser/issues", | ||
"email" : "[email protected]" }, | ||
"description": "parser for NMEA0183 AIS messages", | ||
"keywords": [ | ||
"parser AIS NMEA NMEA0183" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/samothx/AisParser.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/samothx/AisParser/issues", | ||
"email": "[email protected]" | ||
}, | ||
"license": "Apache-2.0", | ||
"main" : "index.js", | ||
"engines" : {"node" : ">=6.4.0"}, | ||
"main": "index.js", | ||
"engines": { | ||
"node": ">=6.4.0" | ||
}, | ||
"scripts": { | ||
"prepublish" : "cd src;babel -d ../lib *.js;cd ..", | ||
"prepublish": "cd src;babel -d ../lib *.js;cd ..", | ||
"flow": "flow; test $? -eq 0 -o $? -eq 2" | ||
}, | ||
"devDependencies": { | ||
"babel-plugin-transform-flow-strip-types": "^6.22.0", | ||
"babel-preset-es2015": "^6.22.0", | ||
"flow-bin": "^0.38.0" | ||
} | ||
} | ||
}, | ||
"homepage": "https://github.com/samothx/AisParser#readme", | ||
"directories": { | ||
"doc": "docs", | ||
"test": "test" | ||
}, | ||
"dependencies": {}, | ||
"author": "Thomas Runte <[email protected]> (http://www.etnur.net)" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters