forked from Automattic/_s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.49 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
{
"name": "rhd-theme",
"version": "1.0.0",
"author": "Roundhouse Designs",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"Theme"
],
"devDependencies": {
"@wordpress/scripts": "^18.1.0",
"dir-archiver": "^1.2.0",
"livereload": "^0.9.3",
"node-sass": "^6.0.1",
"prettier-plugin-style-order": "^0.2.2",
"rtlcss": "^3.3.0"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
},
"scripts": {
"livereload": "node ./dev/livereload.js",
"watch": "node-sass sass/ -o ./ --source-map true --output-style expanded --indent-type tab --indent-width 1 -w",
"watch:live": "node-sass sass/ -o ./ --source-map true --output-style expanded --indent-type tab --indent-width 1 -w & npm run livereload",
"compile:css": "node-sass sass/ -o ./ && stylelint '*.css' --fix || true && stylelint '*.css' --fix",
"compile:rtl": "rtlcss style.css style-rtl.css",
"lint:scss": "wp-scripts lint-style 'sass/**/*.scss'",
"lint:js": "wp-scripts lint-js 'js/*.js'",
"bundle": "dir-archiver --src . --dest ../_s.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 sass style.css.map livereload.js"
}
}