-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
69
{
"name": "cithak",
"version": "1.3.0",
"description": "Simple, Secure yet Powerful template manager",
"main": "build/file/cithak.js",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"prepublishOnly": "npm run build",
"dev": "rollup -cw",
"deploy": "npm run build-docs && node ./scripts/deploy.js",
"build-docs": "cd ./docs && npm run build",
"build-ubuntu-latest": "pkg -t node10-linux --compress GZip -o ./build/bin/cithak-linux ./cithak.js",
"build-windows-latest": "pkg -t node10-win --compress GZip -o ./build/bin/cithak-win ./cithak.js",
"build-macos-latest": "pkg -t node10-mac --compress GZip -o ./build/bin/cithak-mac ./cithak.js"
},
"bin": {
"cithak": "bin/cithak",
"cth": "bin/cithak"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/KucingKode/Cithak.git"
},
"homepage": "https://KucingKode.github.io/Cithak",
"bugs": {
"url": "https://github.com/KucingKode/Cithak/issues"
},
"author": "KucingKode",
"license": "MIT",
"keywords": [
"template manager",
"template",
"manager",
"cli",
"productivity",
"tool"
],
"dependencies": {
"arg": "^5.0.1",
"chalk": "^4.1.2",
"dmergejs": "^0.1.2",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"inquirer": "^8.1.2",
"listr": "^0.14.3",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-json": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"prettier": "^2.3.2",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2"
},
"engines": {
"node": ">=10.0.0"
}
}