-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.27 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
{
"name": "reactium",
"version": "5.1.0",
"description": "A CLI for creating Reactium / Actinium projects.",
"type": "module",
"exports": "./arcli-node.js",
"scripts": {
"test": "node ./arcli.js",
"testx": "run-s test:*",
"test:reactium-install": "mocha ./test/reactium-install.spec.js",
"test:config-set": "mocha ./test/config-set.spec.js",
"test:reactium-update": "mocha ./test/reactium-update.spec.js",
"test:project-init": "mocha ./test/project-init.spec.js",
"test:glob": "mocha ./test/glob.spec.js",
"pub": "node ./prepublish.js && npm publish"
},
"author": "Reactium LLC",
"license": "MIT",
"engines": {
"node": ">=18.12.1",
"npm": ">=9.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Atomic-Reactor/CLI.git"
},
"bin": {
"reactium": "arcli.js"
},
"keywords": [
"actinium",
"react",
"reactium",
"redux",
"framework",
"javascript",
"ddd",
"cli"
],
"dependencies": {
"@atomic-reactor/decompress": "^4.2.5",
"@atomic-reactor/reactium-sdk-core": "^2.2.0",
"action-sequence": "^1.1.2",
"axios": "^1.6.8",
"camelcase": "^6.2.0",
"chalk": "^4.1.2",
"cli-spinners": "^2.7.0",
"commander": "^6.1.0",
"crypto": "^1.0.1",
"decamelize": "^4.0.0",
"delete-empty": "^3.0.0",
"folder-zipper": "^1.0.0",
"fs-extra": "^10.1.0",
"fs-readdir-recursive": "^1.1.0",
"globby": "^13.1.2",
"handlebars": "^4.7.8",
"ignored": "^2.0.4",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.0.2",
"inquirer-fuzzy-path": "^2.3.0",
"memory-cache": "^0.2.0",
"micromatch": "^4.0.5",
"moment": "^2.30.1",
"object-path": "^0.11.8",
"ora": "^5.1.0",
"parse": "^5.0.0",
"portscanner": "^2.2.0",
"prettier": "1.18.1",
"prompt": "^1.0.0",
"semver": "^7.6.0",
"slugify": "^1.6.6",
"tar": "^7.0.1",
"text-table": "^0.2.0",
"underscore": "^1.13.6",
"uuid": "^3.3.3"
},
"devDependencies": {
"chai": "^5.1.0",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5"
},
"bugs": {
"url": "https://github.com/Atomic-Reactor/CLI/issues"
},
"homepage": "https://github.com/Atomic-Reactor/CLI#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}