-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.47 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": "efod-framework",
"version": "0.0.1",
"description": "Efod framework is a package to improve Efod theme functionality",
"main": "index.js",
"scripts": {
"lint:js": "wp-scripts lint-js 'scripts/**/*.js' --fix",
"build": "wp-scripts build 'scripts/admin.js' 'scripts/public.js' --output-path=public/js && node-sass styles/admin.scss public/css/admin.css && node-sass styles/public.scss public/css/public.css",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"deploy": "commands/deploy.sh",
"commit": "cz",
"bundle": "dir-archiver --src . --dest ./dist/efod-framework.zip --exclude .DS_Store .stylelintrc.json .eslintrc .prettierrc .git .gitattributes .github .gitignore README.md composer.json composer.lock node_modules vendor package-lock.json package.json .travis.yml phpcs.xml.dist styles scripts commands yarn.lock"
},
"keywords": [
"\"Wordpress\"",
"\"Theme\"",
"\"Plugin\""
],
"author": "FORTI Digital Studio",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@wordpress/scripts": "^25.2.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"dir-archiver": "^2.1.0",
"node-sass": "^7.0.3",
"standard-version": "^9.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"bootstrap": "^5.3.2"
}
}