-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "create-lumapps-extension",
"version": "1.4.0",
"description": "",
"author": "[email protected]",
"main": "index.js",
"bin": {
"cha": "index.js",
"create-lumapps-extension": "index.js"
},
"files": [
"index.js",
"src",
"template-*",
"updateFiles"
],
"scripts": {
"run": "node index.js",
"prepublishOnly": "rm -f template-*/yarn.lock && rm -rf template-*/node_modules",
"version:patch": "yarn version patch && node updateVersions.js",
"version:minor": "yarn version minor && node updateVersions.js",
"publish:beta": "yarn npm publish --tag beta",
"publish:alpha": "yarn npm publish --tag alpha",
"postversion": "node updateVersions.js",
"serve:doc": "docsify serve docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lumapps/create-lumapps-extensions-templates.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lumapps/create-lumapps-extensions-templates/issues"
},
"dependencies": {
"chalk": "^4.1.0",
"fs-extra": "^9.0.0",
"inquirer": "^7.3.3",
"minimist": "^1.2.5"
},
"homepage": "https://github.com/lumapps/create-lumapps-extensions-templates#readme",
"devDependencies": {
"docsify": "^4.12.1",
"docsify-cli": "^4.4.3"
},
"volta": {
"node": "20.12.1",
"yarn": "3.8.1"
},
"packageManager": "[email protected]"
}