-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
30 lines (30 loc) · 1.23 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
{
"name": "acajou",
"description": "A minimalist woodstyle theme for WordPress.",
"author": {
"name": "Samuel Guebo",
"email": "[email protected]"
},
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"Theme"
],
"homepage": "https://github.com/samuelguebo/acajou",
"repository": {
"type": "git",
"url": "git+https://github.com/samuelguebo/acajou.git"
},
"devDependencies": {
"@wordpress/scripts": "^27.0.0",
"dir-archiver": "^1.1.1",
"node-sass": "^9.0.0"
},
"scripts": {
"watch": "node-sass scss/ -o css/ --source-map true --output-style expanded --indent-type tab --indent-width 1 -w",
"compile:css": "node-sass scss/ -o css/ && stylelint '*.css' --fix || true && stylelint '*.css' --fix",
"lint:scss": "wp-scripts lint-style 'scss/**/*.scss'",
"lint:js": "wp-scripts lint-js 'js/*.js'",
"bundle": "dir-archiver --src . --dest ../acajou.zip --exclude .DS_Store .stylelintrc.json .eslintrc .git .gitattributes .github .gitignore README.md composer.json composer.lock node_modules vendor package-lock.json package.json .travis.yml phpcs.xml.dist scss style.css.map yarn.lock"
}
}