-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.27 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.27 KB
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
{
"name": "@code-collabo/node-mongo-cli",
"version": "2.3.0",
"description": "node-mongo-cli Command Line Interface made with nodejs to bootstrap any of 3 boilerplate templates for your nodejs and/or mongoDB development.",
"main": "src/cli.js",
"bin": {
"@code-collabo/node-mongo-cli": "bin/create-node-mongo-project",
"node-mongo": "bin/create-node-mongo-project",
"nmgo": "bin/create-node-mongo-project"
},
"scripts": {
"prestart": "node -r esm src/customize/startMessage.js",
"start": "npm-run-all --parallel lint:watch",
"lint": "esw src --color",
"lint:watch": "npm run lint -- --watch",
"test": "npm-run-all --parallel test-message dev-test",
"dev-test": "nodemon --exec babel-node spec/run.js",
"CI-test": "babel-node spec/run.js",
"test-message": "node -r esm src/customize/testMessage",
"cleanup": "node -r esm dev/cleanup.js"
},
"repository": {
"type": "git",
"url": "https://github.com/code-collabo/node-mongo-cli.git"
},
"keywords": [
"cli",
"boilerplate",
"template",
"create",
"node",
"nodejs",
"node-mongo",
"node-mongo-cli",
"mongod",
"mongodb",
"atlas",
"esm",
"cjs",
"javascript"
],
"author": "Obiagba Mary",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/code-collabo/node-mongo/issues"
},
"homepage": "https://github.com/code-collabo/node-mongo-cli#readme",
"dependencies": {
"arg": "^5.0.2",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"esm": "^3.2.25",
"execa": "^5.0.0",
"inquirer": "^8.0.0",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.5",
"@babel/eslint-parser": "^7.21.3",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.21.5",
"@babel/register": "^7.21.0",
"babel-plugin-transform-import-meta": "^2.2.0",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"eslint-watch": "^8.0.0",
"jasmine": "^4.6.0",
"nodemon": "^2.0.22"
},
"files": [
"bin/",
"src/",
"templates/"
]
}