-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 2.28 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
46
47
48
49
50
51
52
53
{
"name": "smntcs-quantity-buttons-for-woocommerce",
"version": "1.0.0",
"description": "Display quantity buttons on WooCommerce product page",
"author": "Niels Lange",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"Plugin",
"SMNTCS Quantity Increment Buttons for WooCommerce"
],
"homepage": "https://github.com/nielslange/smntcs-quantity-buttons-for-woocommerce#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nielslange/smntcs-quantity-buttons-for-woocommerce.git"
},
"bugs": {
"url": "https://github.com/nielslange/smntcs-quantity-buttons-for-woocommerce/issues"
},
"devDependencies": {
"@wordpress/browserslist-config": "5.1.0",
"@wordpress/env": "5.3.0",
"@wordpress/prettier-config": "2.6.0",
"@wordpress/scripts": "24.2.0",
"@wordpress/stylelint-config": "21.1.0",
"eslint": "8.24.0",
"npm-run-all": "4.1.5",
"node-sass": "7.0.3",
"nord": "0.2.1",
"prettier": "npm:[email protected]",
"stylelint": "14.13.0",
"uglify-js": "3.17.2"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"scripts": {
"build:scss": "node-sass assets/scss/style.scss style.css --output-style compressed --indent-type tab --indent-width 1 --source-map true",
"build:smntcs-retro": "node-sass assets/scss/themes/smntcs-retro.scss assets/css/smntcs-retro.css --output-style compressed --indent-type tab --indent-width 1 --source-map true",
"build:twentynineteen": "node-sass assets/scss/themes/twentynineteen.scss assets/css/twentynineteen.css --output-style compressed --indent-type tab --indent-width 1 --source-map true",
"build:twentytwenty": "node-sass assets/scss/themes/twentytwenty.scss assets/css/twentytwenty.css --output-style compressed --indent-type tab --indent-width 1 --source-map true",
"build:js": "uglifyjs assets/js/button-handler.js -o button-handler.js --source-map",
"build": "concurrently 'npm run build:scss' 'npm run build:smntcs-retro' 'npm run build:twentynineteen' 'npm run build:twentytwenty' 'npm run build:js'",
"lint:scss": "stylelint **/*.scss",
"lint:js": "eslint assets/js",
"lint:js-fix": "eslint assets/js --fix",
"test": "npm-run-all --parallel phpcs phplint",
"phpcbf": "composer run phpcbf",
"phpcs": "composer run phpcs",
"phplint": "composer run phplint",
"wp-env": "wp-env"
}
}