@magnolia/cli-jumpstart-plugin 1.0.2 → 1.0.3

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/dist/package.json CHANGED
@@ -1,59 +1,77 @@
1
1
  {
2
- "name": "@magnolia/cli-jumpstart-plugin",
3
- "version": "1.0.2",
4
- "description": "A plugin for Magnolia CLI to download and set up a new headless or freemarker-based project with Magnolia webapp",
5
- "main": "dist/index.js",
6
- "scripts": {
7
- "test": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
8
- "build": "standard --fix && tsc && cpy package.json dist && cpy lib/locales dist",
9
- "standard": "npx standard"
10
- },
11
- "keywords": [],
12
- "author": "Magnolia International Ltd.",
13
- "license": "SEE LICENSE IN LICENSE.txt",
14
- "devDependencies": {
15
- "@jest/globals": "^29.6.3",
16
- "@types/decompress": "^4.2.4",
17
- "@types/fs-extra": "^11.0.1",
18
- "@types/inquirer": "^9.0.3",
19
- "@types/js-beautify": "^1.14.0",
20
- "@types/node": "^20.3.3",
21
- "@types/progress": "^2.0.5",
22
- "@types/underscore": "^1.11.14",
23
- "@types/walk": "^2.3.1",
24
- "cpy-cli": "^5.0.0",
25
- "jest": "^29.6.2",
26
- "standard": "^17.1.0",
27
- "typescript": "^5.1.6"
28
- },
29
- "dependencies": {
30
- "@babel/generator": "^7.24.4",
31
- "@babel/parser": "^7.23.6",
32
- "@babel/traverse": "^7.24.1",
33
- "@babel/types": "^7.23.6",
34
- "@magnolia/cli-helper": "^1.0.0",
35
- "@magnolia/cli-plugin-template": "^1.1.2",
36
- "axios": "^1.4.0",
37
- "commander": "^11.0.0",
38
- "decompress": "^4.2.1",
39
- "dotenv": "^16.3.1",
40
- "execa": "^7.2.0",
41
- "fs-extra": "^11.1.1",
42
- "glob": "^10.3.10",
43
- "inquirer": "^9.2.8",
44
- "js-beautify": "^1.14.9",
45
- "json5": "^2.2.3",
46
- "ora": "^7.0.1",
47
- "progress": "^2.0.3",
48
- "underscore": "^1.13.6",
49
- "walk": "^2.3.15",
50
- "winston": "^3.10.0",
51
- "yaml": "^2.3.4"
52
- },
53
- "type": "module",
54
- "standard": {
55
- "ignore": [
56
- "tests/resources/config-helper/*/mgnl.config.js"
57
- ]
58
- }
2
+ "name": "@magnolia/cli-jumpstart-plugin",
3
+ "version": "1.0.3",
4
+ "description": "A plugin for Magnolia CLI to download and set up a new headless or freemarker-based project with Magnolia webapp",
5
+ "main": "dist/index.js",
6
+ "scripts": {
7
+ "prepare": "husky || true",
8
+ "test": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
9
+ "build": "npm run lint && tsc && cpy package.json dist && cpy lib/locales dist",
10
+ "depcheck": "depcheck",
11
+ "lint": "eslint .",
12
+ "lint:fix": "npm run lint -- --fix",
13
+ "format": "prettier \"./**/*.{ts,js,json}\" --ignore-path .prettierignore --ignore-unknown --check",
14
+ "format:write": "npm run format -- --write"
15
+ },
16
+ "lint-staged": {
17
+ "**/*.{ts,js,json}": [
18
+ "npm run format:write",
19
+ "npm run lint:fix"
20
+ ]
21
+ },
22
+ "keywords": [],
23
+ "author": "Magnolia International Ltd.",
24
+ "license": "SEE LICENSE IN LICENSE.txt",
25
+ "devDependencies": {
26
+ "@jest/globals": "^29.7.0",
27
+ "@types/decompress": "^4.2.7",
28
+ "@types/fs-extra": "^11.0.4",
29
+ "@types/inquirer": "^9.0.7",
30
+ "@types/js-beautify": "^1.14.3",
31
+ "@types/node": "^22.13.4",
32
+ "@types/progress": "^2.0.7",
33
+ "@types/underscore": "^1.13.0",
34
+ "@types/walk": "^2.3.4",
35
+ "cpy-cli": "^5.0.0",
36
+ "depcheck": "^1.4.7",
37
+ "eslint": "^9.20.1",
38
+ "husky": "^9.1.7",
39
+ "jest": "^29.7.0",
40
+ "lint-staged": "^15.4.3",
41
+ "prettier": "^3.5.1",
42
+ "typescript": "^5.7.3"
43
+ },
44
+ "dependencies": {
45
+ "@babel/generator": "^7.26.9",
46
+ "@babel/parser": "^7.26.9",
47
+ "@babel/traverse": "^7.26.9",
48
+ "@babel/types": "^7.26.9",
49
+ "@magnolia/cli-helper": "^1.0.5",
50
+ "@magnolia/cli-plugin-template": "^1.1.3",
51
+ "axios": "^1.7.9",
52
+ "chalk": "^5.4.1",
53
+ "commander": "^12.1.0",
54
+ "decompress": "^4.2.1",
55
+ "dotenv": "^16.4.7",
56
+ "execa": "^9.5.2",
57
+ "fs-extra": "^11.3.0",
58
+ "glob": "^11.0.1",
59
+ "http-proxy-agent": "^7.0.2",
60
+ "https-proxy-agent": "^7.0.6",
61
+ "inquirer": "^12.4.2",
62
+ "js-beautify": "^1.15.3",
63
+ "json5": "^2.2.3",
64
+ "ora": "^8.2.0",
65
+ "progress": "^2.0.3",
66
+ "underscore": "^1.13.7",
67
+ "walk": "^2.3.15",
68
+ "winston": "^3.17.0",
69
+ "yaml": "^2.7.0"
70
+ },
71
+ "type": "module",
72
+ "standard": {
73
+ "ignore": [
74
+ "tests/resources/config-helper/*/mgnl.config.js"
75
+ ]
76
+ }
59
77
  }
package/package.json CHANGED
@@ -1,59 +1,77 @@
1
1
  {
2
- "name": "@magnolia/cli-jumpstart-plugin",
3
- "version": "1.0.2",
4
- "description": "A plugin for Magnolia CLI to download and set up a new headless or freemarker-based project with Magnolia webapp",
5
- "main": "dist/index.js",
6
- "scripts": {
7
- "test": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
8
- "build": "standard --fix && tsc && cpy package.json dist && cpy lib/locales dist",
9
- "standard": "npx standard"
10
- },
11
- "keywords": [],
12
- "author": "Magnolia International Ltd.",
13
- "license": "SEE LICENSE IN LICENSE.txt",
14
- "devDependencies": {
15
- "@jest/globals": "^29.6.3",
16
- "@types/decompress": "^4.2.4",
17
- "@types/fs-extra": "^11.0.1",
18
- "@types/inquirer": "^9.0.3",
19
- "@types/js-beautify": "^1.14.0",
20
- "@types/node": "^20.3.3",
21
- "@types/progress": "^2.0.5",
22
- "@types/underscore": "^1.11.14",
23
- "@types/walk": "^2.3.1",
24
- "cpy-cli": "^5.0.0",
25
- "jest": "^29.6.2",
26
- "standard": "^17.1.0",
27
- "typescript": "^5.1.6"
28
- },
29
- "dependencies": {
30
- "@babel/generator": "^7.24.4",
31
- "@babel/parser": "^7.23.6",
32
- "@babel/traverse": "^7.24.1",
33
- "@babel/types": "^7.23.6",
34
- "@magnolia/cli-helper": "^1.0.0",
35
- "@magnolia/cli-plugin-template": "^1.1.2",
36
- "axios": "^1.4.0",
37
- "commander": "^11.0.0",
38
- "decompress": "^4.2.1",
39
- "dotenv": "^16.3.1",
40
- "execa": "^7.2.0",
41
- "fs-extra": "^11.1.1",
42
- "glob": "^10.3.10",
43
- "inquirer": "^9.2.8",
44
- "js-beautify": "^1.14.9",
45
- "json5": "^2.2.3",
46
- "ora": "^7.0.1",
47
- "progress": "^2.0.3",
48
- "underscore": "^1.13.6",
49
- "walk": "^2.3.15",
50
- "winston": "^3.10.0",
51
- "yaml": "^2.3.4"
52
- },
53
- "type": "module",
54
- "standard": {
55
- "ignore": [
56
- "tests/resources/config-helper/*/mgnl.config.js"
57
- ]
58
- }
2
+ "name": "@magnolia/cli-jumpstart-plugin",
3
+ "version": "1.0.3",
4
+ "description": "A plugin for Magnolia CLI to download and set up a new headless or freemarker-based project with Magnolia webapp",
5
+ "main": "dist/index.js",
6
+ "scripts": {
7
+ "prepare": "husky || true",
8
+ "test": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
9
+ "build": "npm run lint && tsc && cpy package.json dist && cpy lib/locales dist",
10
+ "depcheck": "depcheck",
11
+ "lint": "eslint .",
12
+ "lint:fix": "npm run lint -- --fix",
13
+ "format": "prettier \"./**/*.{ts,js,json}\" --ignore-path .prettierignore --ignore-unknown --check",
14
+ "format:write": "npm run format -- --write"
15
+ },
16
+ "lint-staged": {
17
+ "**/*.{ts,js,json}": [
18
+ "npm run format:write",
19
+ "npm run lint:fix"
20
+ ]
21
+ },
22
+ "keywords": [],
23
+ "author": "Magnolia International Ltd.",
24
+ "license": "SEE LICENSE IN LICENSE.txt",
25
+ "devDependencies": {
26
+ "@jest/globals": "^29.7.0",
27
+ "@types/decompress": "^4.2.7",
28
+ "@types/fs-extra": "^11.0.4",
29
+ "@types/inquirer": "^9.0.7",
30
+ "@types/js-beautify": "^1.14.3",
31
+ "@types/node": "^22.13.4",
32
+ "@types/progress": "^2.0.7",
33
+ "@types/underscore": "^1.13.0",
34
+ "@types/walk": "^2.3.4",
35
+ "cpy-cli": "^5.0.0",
36
+ "depcheck": "^1.4.7",
37
+ "eslint": "^9.20.1",
38
+ "husky": "^9.1.7",
39
+ "jest": "^29.7.0",
40
+ "lint-staged": "^15.4.3",
41
+ "prettier": "^3.5.1",
42
+ "typescript": "^5.7.3"
43
+ },
44
+ "dependencies": {
45
+ "@babel/generator": "^7.26.9",
46
+ "@babel/parser": "^7.26.9",
47
+ "@babel/traverse": "^7.26.9",
48
+ "@babel/types": "^7.26.9",
49
+ "@magnolia/cli-helper": "^1.0.5",
50
+ "@magnolia/cli-plugin-template": "^1.1.3",
51
+ "axios": "^1.7.9",
52
+ "chalk": "^5.4.1",
53
+ "commander": "^12.1.0",
54
+ "decompress": "^4.2.1",
55
+ "dotenv": "^16.4.7",
56
+ "execa": "^9.5.2",
57
+ "fs-extra": "^11.3.0",
58
+ "glob": "^11.0.1",
59
+ "http-proxy-agent": "^7.0.2",
60
+ "https-proxy-agent": "^7.0.6",
61
+ "inquirer": "^12.4.2",
62
+ "js-beautify": "^1.15.3",
63
+ "json5": "^2.2.3",
64
+ "ora": "^8.2.0",
65
+ "progress": "^2.0.3",
66
+ "underscore": "^1.13.7",
67
+ "walk": "^2.3.15",
68
+ "winston": "^3.17.0",
69
+ "yaml": "^2.7.0"
70
+ },
71
+ "type": "module",
72
+ "standard": {
73
+ "ignore": [
74
+ "tests/resources/config-helper/*/mgnl.config.js"
75
+ ]
76
+ }
59
77
  }