-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "@dgrammatiko/create-joomla-extension",
"version": "1.0.1",
"type": "module",
"author": "Dimitris Grammatikogiannis",
"license": "MIT",
"description": "Scaffolding for Joomla Extensions",
"publishConfig": {
"access": "public"
},
"bin": {
"create-joomla-extension": "dist/index.mjs"
},
"scripts": {
"prepublishOnly": "npm install && npm run bundle && npx np --no-cleanup --yolo --no-publish",
"bundle": "node buildTemplates.mjs && rm -rf dist && rollup -c rollup.config.js",
"update": "npm install $(npm outdated | cut -d' ' -f 1 | sed '1d' | xargs -I '$' echo '$@latest' | xargs echo) --save-exact"
},
"homepage": "https://github.com/dgrammatiko/create-joomla-extension#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dgrammatiko/create-joomla-extension.git"
},
"bugs": {
"url": "https://github.com/dgrammatiko/create-joomla-extension/issues"
},
"devDependencies": {
"@clack/prompts": "^0.9.0",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-terser": "0.4.4",
"change-case": "5.4.4",
"directory-tree": "^3.5.1",
"rollup": "4.32.0"
},
"files": [
"dist/"
]
}