forked from samothx/AisParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "aisparser",
"version": "0.0.13",
"private": false,
"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"
},
"scripts": {
"build": "make",
"transpile": "make",
"prepublishOnly": "make",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"test": "jest"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"flow-bin": "^0.61.0",
"jest": "^22.4.3",
"random-seed": "^0.3.0"
},
"homepage": "https://github.com/samothx/AisParser#readme",
"directories": {
"doc": "docs",
"test": "test"
},
"dependencies": {},
"author": "Thomas Runte <[email protected]> (http://www.etnur.net)",
"jest" : {
"testPathIgnorePatterns" : ["/node_modules/","/testHelper/"]
}
}