-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "ads-b",
"version": "0.2.0",
"description": "Library for decoding ADS-B messages emitted from Aircraft",
"files": [
"dist/**/*"
],
"main": "dist/ADSBVersion2Decoder.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register \"src/**/*.spec.ts\"",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/mattlaver/ads-b.git"
},
"author": "Matt Laver",
"keywords": [
"Mode-s",
"ADS-B"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.5",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"prettier": "^1.16.4",
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3333"
}
}