-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@dgac/asterix-tool",
"description": "",
"version": "0.3.0",
"author": "Benjamin BERET <benjamin.beret@aviation-civile.gouv.fr>",
"license": "MIT",
"bin": {
"asterix-tool": "./bin/run"
},
"bugs": "https://github.com/DGAC/asterix-tool/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3.1.0",
"@types/cli-progress": "^3.4.2",
"cli-progress": "^3.6.0",
"cli-ux": "^5.4.5",
"date-fns": "^2.10.0",
"ip-address": "^6.3.0",
"ipaddr.js": "^1.9.1",
"node-dns-sd": "^0.4.1",
"pino": "^6.3.2",
"pino-pretty": "^4.0.0",
"ramda": "^0.27.0",
"tslib": "^2.3.1",
"unix-dgram": "^2.0.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/ip-address": "^5.8.2",
"@types/multipipe": "^3.0.0",
"@types/node": "^14.0.12",
"@types/pino": "^6.0.1",
"@types/ramda": "^0.27.6",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"globby": "^11.0.1",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/yarn.lock",
"/oclif.manifest.json",
"/bin",
"/lib"
],
"homepage": "https://github.com/DGAC/asterix-tool",
"keywords": [
"oclif"
],
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "asterix-tool",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "DGAC/asterix-tool",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc.js",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"typecheck": "tsc --noEmit",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}