-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.87 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.87 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
{
"name": "@lcu/cli",
"version": "0.0.88",
"description": "This is the home of the LCU DevKit and the LCU CLI code.",
"main": "./dist/src/lcu-cli.js",
"bin": {
"lcu": "./dist/src/lcu-cli.js"
},
"scripts": {
"deploy": "npm version patch && npm run build && npm run deploy:lib",
"deploy:lib": "npm publish ./ --access public",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"build:dev": "tsc -w",
"build-for-local-testing": "tsc -p tsconfig.json --watch",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"start": "nodemon --exec ts-node -- ./src/lcu-cli.ts",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lowcodeunit/lcu-cli.git"
},
"keywords": [
"LowCodeUnit",
"LCU",
"CLI"
],
"author": "Michael Gearhardt",
"license": "Apache",
"bugs": {
"url": "https://github.com/lowcodeunit/lcu-cli/issues"
},
"homepage": "https://github.com/lowcodeunit/lcu-cli#readme",
"dependencies": {
"@types/fs-extra": "^9.0.1",
"axios": "^0.20.0",
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"clear": "^0.1.0",
"commander": "^2.19.0",
"concurrently": "^5.3.0",
"core-js": "^3.6.5",
"download-git-repo": "^3.0.2",
"exeq": "^3.0.0",
"figlet": "^1.5.0",
"fs-extra": "^9.0.1",
"handlebars": "^4.0.12",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"ora": "^3.0.0",
"path": "^0.12.7",
"recursive-readdir": "^2.2.2",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"user-home": "^2.0.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/core-js": "^2.5.4",
"@types/figlet": "^1.2.0",
"@types/inquirer": "0.0.43",
"@types/node": "^12.12.59",
"@types/ora": "^3.2.0",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}