This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.57 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": "@fdm-monster/cli",
"repository": {
"type": "git",
"url": "https://github.com/fdm-monster/fdm-monster"
},
"author": "David Zwart",
"license": "AGPL-3.0-or-later",
"private": false,
"version": "0.1.5-alpha",
"bin": {
"fdm-monster": "dist/cli.js",
"fdmm": "dist/cli.js"
},
"description": "FDM Monster CLI aids in the process of installing, updating and maintaining your FDM Monster server across windows, mac and linux.",
"main": "dist/cli.js",
"scripts": {
"dev": "concurrently \"yarn build:watch\" \"yarn watch-dev\"",
"watch-dev": "cross-env NODE_ENV=development nodemon --watch \"dist/**/*\" -e js ./dist/index.js",
"build": "swc src -d dist",
"build:watch": "swc src -w -d dist",
"cli": "yarn build && node ./dist/cli.js",
"ins": "yarn build && cross-env NODE_ENV=development node ./dist/install.js",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"swc": "swc",
"tsc": "tsc --noEmit",
"test": "jest --forceExit --maxConcurrency=8 --runInBand ",
"test:cov": "jest --forceExit --coverage --maxConcurrency=8 --runInBand ",
"cov:show": "./coverage/lcov-report/index.html"
},
"keywords": [
"fdm-monster",
"cli",
"octoprint",
"fdm",
"3d printing",
"pi",
"node",
"vue"
],
"dependencies": {
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"reflect-metadata": "0.2.2",
"semver": "7.6.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@lcov-viewer/cli": "1.3.0",
"@lcov-viewer/istanbul-report": "1.4.0",
"@swc/cli": "0.3.12",
"@swc/core": "1.4.14",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@types/node": "20.12.7",
"@types/semver": "7.5.8",
"@types/supertest": "6.0.2",
"@types/yargs": "17.0.32",
"chokidar": "3.6.0",
"concurrently": "8.2.2",
"eslint": "9.0.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "17.2.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"jest": "29.7.0",
"jest-27-expect-message": "1.1.0",
"nock": "13.5.4",
"prettier": "3.2.5",
"supertest": "6.3.4",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"ignore-engines": false,
"engine-strict": true,
"engines": {
"node": ">= 18.0.0",
"npm": ">= 8.1.4",
"yarn": ">= 1.22.10"
},
"nodemonConfig": {
"verbose": false,
"ignore": [
".github/*",
"test/*",
"docker/*"
],
"delay": 100
}
}