create-platformatic 1.19.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +22 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-platformatic",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"description": "Create platformatic-db interactive tool",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,47 +15,48 @@
|
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
16
|
"author": "Marco Piraccini <marco.piraccini@gmail.com>",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@types/node": "^20.
|
|
18
|
+
"@types/node": "^20.11.15",
|
|
19
19
|
"boring-name-generator": "^1.0.3",
|
|
20
20
|
"chalk": "^5.3.0",
|
|
21
21
|
"columnify": "^1.6.0",
|
|
22
22
|
"commist": "^3.2.0",
|
|
23
|
-
"desm": "^1.3.
|
|
23
|
+
"desm": "^1.3.1",
|
|
24
24
|
"es-main": "^1.3.0",
|
|
25
25
|
"execa": "^8.0.1",
|
|
26
|
-
"fastify": "^4.
|
|
26
|
+
"fastify": "^4.26.0",
|
|
27
27
|
"help-me": "^5.0.0",
|
|
28
|
-
"inquirer": "^9.2.
|
|
29
|
-
"log-update": "^
|
|
28
|
+
"inquirer": "^9.2.13",
|
|
29
|
+
"log-update": "^6.0.0",
|
|
30
30
|
"minimist": "^1.2.8",
|
|
31
31
|
"ora": "^6.3.1",
|
|
32
|
-
"pino": "^8.
|
|
33
|
-
"pino-pretty": "^10.
|
|
32
|
+
"pino": "^8.17.2",
|
|
33
|
+
"pino-pretty": "^10.3.1",
|
|
34
34
|
"pupa": "^3.1.0",
|
|
35
35
|
"semver": "^7.5.4",
|
|
36
36
|
"strip-ansi": "^7.1.0",
|
|
37
|
-
"undici": "^6.
|
|
37
|
+
"undici": "^6.6.0",
|
|
38
38
|
"which": "^3.0.1",
|
|
39
|
-
"@platformatic/
|
|
40
|
-
"@platformatic/utils": "1.
|
|
41
|
-
"@platformatic/
|
|
39
|
+
"@platformatic/config": "1.20.0",
|
|
40
|
+
"@platformatic/utils": "1.20.0",
|
|
41
|
+
"@platformatic/create-platformatic-auto": "1.20.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"ajv": "^8.12.0",
|
|
45
|
-
"
|
|
45
|
+
"borp": "^0.9.0",
|
|
46
|
+
"c8": "^9.1.0",
|
|
46
47
|
"cross-env": "^7.0.3",
|
|
47
|
-
"dotenv": "^16.
|
|
48
|
-
"esmock": "^2.
|
|
48
|
+
"dotenv": "^16.4.1",
|
|
49
|
+
"esmock": "^2.6.3",
|
|
49
50
|
"snazzy": "^9.0.0",
|
|
50
51
|
"standard": "^17.1.0",
|
|
51
|
-
"typescript": "~5.3.
|
|
52
|
-
"yaml": "^2.3.
|
|
53
|
-
"@platformatic/db": "1.
|
|
54
|
-
"@platformatic/service": "1.
|
|
52
|
+
"typescript": "~5.3.3",
|
|
53
|
+
"yaml": "^2.3.4",
|
|
54
|
+
"@platformatic/db": "1.20.0",
|
|
55
|
+
"@platformatic/service": "1.20.0"
|
|
55
56
|
},
|
|
56
57
|
"scripts": {
|
|
57
|
-
"test:cli": "
|
|
58
|
-
"test:unit": "pnpm run lint && cross-env NODE_OPTIONS=\"--loader=esmock --no-warnings\"
|
|
58
|
+
"test:cli": "borp --pattern \"test/cli/*.test.mjs\" --timeout 120000 --concurrency=1",
|
|
59
|
+
"test:unit": "pnpm run lint && cross-env NODE_OPTIONS=\"--loader=esmock --no-warnings\" borp --coverage --pattern \"test/unit/*.test.mjs\" --timeout 120000",
|
|
59
60
|
"test": "npm run test:unit && npm run test:cli",
|
|
60
61
|
"lint": "standard | snazzy"
|
|
61
62
|
}
|