-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "airac-cc",
"version": "1.0.6",
"description": "Utility for AIRAC cycle calculations",
"repository": {
"type": "git",
"url": "https://github.com/fundter/airac-cc.git"
},
"main": "dist/index.js",
"bin": {
"airac-cc": "dist/bin/cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"start": "dist/bin/cli.js",
"test": "mocha --require ts-node/register test/**/*.ts",
"coverage": "nyc mocha --require ts-node/register --require source-map-support/register --recursive test/**/*.ts",
"coverage-ci": "nyc mocha --require ts-node/register --require source-map-support/register --recursive test/**/*.ts && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"airac",
"aip",
"icao",
"airac-cycle",
"effectivity",
"aeronautic",
"navigation"
],
"author": "David Fundter",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.22",
"@types/yargs": "^13.0.4",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"dependencies": {
"chalk": "^3.0.0",
"yargs": "^15.0.2"
}
}