UNPKG

1.41 kBJSONView Raw
1{
2 "name": "component-creator-cli",
3 "version": "4.5.6",
4 "description": "Define and generate automatically your own custom component from CLI (like the angular CLI)",
5 "scripts": {
6 "build": "./node_modules/.bin/tsc -p tsconfig.json",
7 "version": "npm run build",
8 "postversion": "git push origin master && git push --follow-tags",
9 "start": "node dist/app.js",
10 "dev": "nodemon"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/enzo-cora/component-creator-cli.git"
15 },
16 "author": "enzo",
17 "keywords": [
18 "component",
19 "creator",
20 "generator",
21 "architecture",
22 "cli",
23 "domain-driven-design"
24 ],
25 "license": "MIT",
26 "bugs": {
27 "url": "https://github.com/enzo-cora/component-creator-cli/issues"
28 },
29 "homepage": "https://github.com/enzo-cora/component-creator-cli#readme",
30 "devDependencies": {
31 "@types/node": "^16.11.6",
32 "nodemon": "^2.0.14",
33 "ts-node": "^10.4.0",
34 "typescript": "^4.5.2"
35 },
36 "dependencies": {
37 "camel-case": "^4.1.2",
38 "chalk": "^4.1.2",
39 "commander": "^8.3.0",
40 "conf": "^10.0.3",
41 "constant-case": "^3.0.4",
42 "param-case": "^3.0.4",
43 "pascal-case": "^3.1.2",
44 "sentence-case": "^3.0.4",
45 "snake-case": "^3.0.4",
46 "table": "^6.7.3"
47 },
48 "module": "dist/app.es.js",
49 "types": "dist/app.d.ts",
50 "files": [
51 "dist"
52 ],
53 "bin": {
54 "ccc": "dist/app.js"
55 }
56}