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
76 lines (76 loc) · 2.06 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
{
"name": "@eagletrt/cli",
"version": "1.2.14",
"description": "The command line interface of @eagletrt",
"bin": {
"eagle": "bundled/index.js"
},
"scripts": {
"clean": "shx rm -rf dist bundled",
"pretranspile": "npm run clean",
"transpile": "tsc -p source",
"prebundle": "npm run clean",
"bundle": "webpack",
"autocomplete": "./scripts/generateAutocomplete.sh",
"lint": "eslint source/**/*.ts --format codeframe",
"lint:fix": "eslint --fix source/**/*.ts --format codeframe",
"commit": "cz",
"commit:sign": "cz -S",
"prepublishOnly": "npm run bundle && npm run autocomplete"
},
"files": [
"bundled",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eagletrt/eagle-cli.git"
},
"keywords": [
"eagletrt",
"formula-sae",
"cli",
"telemetria",
"telemetry"
],
"author": "Eugenio Berretta <euberdeveloper@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eagletrt/eagle-cli/issues"
},
"homepage": "https://github.com/eagletrt/eagle-cli#readme",
"devDependencies": {
"@euberdeveloper/eslint-plugin": "^1.1.3",
"@types/node": "^14.14.41",
"@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.2.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^31.0.0",
"prettier": "^2.2.1",
"shebang-loader": "^0.0.1",
"shx": "^0.3.3",
"ts-loader": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.36.0",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@eagletrt/code-generator": "^4.2.0",
"@eagletrt/telemetria-postprocessing": "^3.5.1",
"@eagletrt/telemetria-simulator": "^4.0.9",
"yargs": "^16.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}