UNPKG

2.14 kBJSONView Raw
1{
2 "name": "@lcu/cli",
3 "version": "0.0.84",
4 "description": "This is the home of the LCU DevKit and the LCU CLI code.",
5 "main": "./dist/src/lcu-cli.js",
6 "bin": {
7 "lcu": "./dist/src/lcu-cli.js"
8 },
9 "scripts": {
10 "deploy": "npm version patch && npm run build && npm run deploy:lib",
11 "deploy:lib": "npm publish ./ --access public",
12 "create": "npm run build && npm run test",
13 "build": "tsc -p .",
14 "build:dev": "tsc -w",
15 "refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
16 "start": "nodemon --exec ts-node -- ./src/lcu-cli.ts",
17 "test": "jest --coverage"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/lowcodeunit/lcu-cli.git"
22 },
23 "keywords": [
24 "LowCodeUnit",
25 "LCU",
26 "CLI"
27 ],
28 "author": "Michael Gearhardt",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/lowcodeunit/lcu-cli/issues"
32 },
33 "homepage": "https://github.com/lowcodeunit/lcu-cli#readme",
34 "dependencies": {
35 "@types/fs-extra": "^5.0.4",
36 "axios": "^0.18.0",
37 "chalk": "^2.4.1",
38 "chokidar": "^2.0.4",
39 "clear": "^0.1.0",
40 "commander": "^2.19.0",
41 "concurrently": "^4.1.0",
42 "core-js": "^2.5.7",
43 "download-git-repo": "^1.1.0",
44 "exeq": "^3.0.0",
45 "figlet": "^1.2.1",
46 "fs-extra": "^7.0.1",
47 "handlebars": "^4.0.12",
48 "inquirer": "^6.2.1",
49 "lodash": "^4.17.11",
50 "ora": "^3.0.0",
51 "path": "^0.12.7",
52 "recursive-readdir": "^2.2.2",
53 "request": "^2.88.0",
54 "rimraf": "^2.6.2",
55 "user-home": "^2.0.0"
56 },
57 "devDependencies": {
58 "@types/commander": "^2.12.2",
59 "@types/core-js": "^2.5.0",
60 "@types/figlet": "^1.2.0",
61 "@types/inquirer": "0.0.43",
62 "@types/node": "^10.12.11",
63 "@types/ora": "^1.3.4",
64 "nodemon": "^1.18.7",
65 "ts-node": "^7.0.1",
66 "typescript": "^3.2.1"
67 }
68}