This repository has been archived by the owner on Mar 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.78 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@eagletrt/telemetria-simulator",
"version": "4.0.9",
"description": "EagleTRT telemetry simulator, in order to simulate on local machine the canbus and the gps serial port",
"main": "./bundled/lib/index.js",
"types": "./bundled/lib/index.d.ts",
"bin": {
"eagletrt-simulator": "./bundled/bin/index.js"
},
"files": [
"package.json",
"bundled",
"default_sources",
"gps_simulator",
"settings",
"README.md",
"LICENSE"
],
"scripts": {
"postinstall": "npm run gps:compile",
"clean": "shx rm -rf dist bundled",
"gps:compile": "cd gps_simulator && ./compile.sh",
"pretranspile": "npm run clean",
"transpile": "tsc -p source",
"prebundle": "npm run clean",
"bundle": "IS_WEBPACK=true webpack",
"lint": "eslint ./source/**/*.ts --format codeframe",
"lint:fix": "eslint --fix ./source/**/*.ts --format codeframe",
"docs:html": "typedoc",
"docs:html-dev": "typedoc --options typedoc.dev.js",
"docs": "npm run docs:html && npm run docs:html-dev",
"commit": "cz",
"commit:sign": "cz -S",
"prepublishOnly": "npm run gps:compile && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eagletrt/telemetria-simulator.git"
},
"author": "Eugenio Berretta <[email protected]>",
"contributors": [
"Giacomo Ascari <[email protected]>",
"Filippo Gastaldello <[email protected]"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/eagletrt/telemetria-simulator/issues"
},
"homepage": "https://github.com/eagletrt/telemetria-simulator#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@euberdeveloper/eslint-plugin": "^1.0.3",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.14.41",
"@types/shelljs": "^0.8.8",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"dts-bundle-webpack": "^1.0.2",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"module-alias": "^2.2.2",
"prettier": "^2.2.1",
"shebang-loader": "^0.0.1",
"shx": "^0.3.3",
"ts-loader": "^8.1.0",
"ttypescript": "^1.5.12",
"typedoc": "^0.20.35",
"typescript": "^4.2.4",
"typescript-transform-paths": "^2.2.3",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"chalk": "^4.1.0",
"shelljs": "^0.8.4",
"tree-kill": "^1.2.2",
"yargs": "^16.2.0"
},
"_moduleAliases": {
"@": "dist",
"@lib": "dist/lib",
"@bin": "dist/bin"
}
}