-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "dexa",
"version": "0.3.1",
"description": "dexa is a CLI tool that allows you to capture your preferred tech stack as a project template with additional commands like code generators",
"main": "index.js",
"type": "module",
"bin": {
"dx": "bin/dx.js",
"dx-add": "bin/dx-add.js",
"dx-generate": "bin/dx-generate.js",
"dx-init": "bin/dx-init.js",
"dx-stack": "bin/dx-stack.js",
"dx-stack-add": "bin/dx-stack-add.js",
"dx-stack-delete": "bin/dx-stack-delete.js",
"dx-stack-list": "bin/dx-stack-list.js"
},
"scripts": {
"test": "npm run eslint && npm run unitTest && npm run integrationTest",
"unitTest": "mocha -R spec --extension test.js ./test/unit/**/*",
"integrationTest": "mocha -R spec --extension test.js --timeout 10000 ./test/integration/**/*",
"eslint": "eslint .",
"prepare": "husky install"
},
"keywords": [
"CLI",
"git",
"project",
"template",
"project-template",
"generators",
"commands",
"scaffolding"
],
"author": "Daniel Jimenez Garcia",
"license": "MIT",
"homepage": "https://github.com/kaizendorks/dexa#readme",
"bugs": {
"url": "https://github.com/kaizendorks/dexa/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaizendorks/dexa.git"
},
"dependencies": {
"chalk": "4.1.2",
"cli-spinner": "0.2.10",
"commander": "8.1.0",
"degit": "2.8.4",
"didyoumean": "1.2.2",
"execa": "5.1.1",
"fs-extra": "10.0.0",
"glob": "7.1.7",
"handlebars": "4.7.7",
"inquirer": "8.1.2"
},
"devDependencies": {
"chai": "4.3.4",
"chai-shallow-deep-equal": "1.4.6",
"eslint": "8.0.0-beta.1",
"husky": "7.0.1",
"mocha": "9.0.3",
"sinon": "11.1.2",
"testdouble": "3.16.1"
},
"engines": {
"node": ">=14"
}
}