-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "@snowdog/create-alpaca-theme",
"version": "1.0.1",
"description": "Create Magento 2 child theme based on Snowdog Alpaca Theme",
"type": "module",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/SnowdogApps/create-alpaca-theme"
},
"bugs": {
"url": "https://github.com/SnowdogApps/create-alpaca-theme/issues"
},
"homepage": "https://github.com/SnowdogApps/create-alpaca-theme#readme",
"scripts": {
"lint": "eslint ./src ./src/utils/* ./src/helpers/* index.js --ext .js"
},
"keywords": [
"alpaca",
"alpaca-theme",
"magento",
"magento2",
"snowdog",
"theme"
],
"author": "Patryk Bura <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"dependencies": {
"cli-progress": "3.9.1",
"colors": "1.4.0",
"inquirer": "8.2.0",
"mysql": "2.18.1"
},
"bin": {
"create-alpaca-theme": "./index.js"
},
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4"
}
}