-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
41 lines (41 loc) · 1.71 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": "woocommerce-pagseguro",
"description": "Gateway de pagamento PagSeguro para WooCommerce",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/claudiosanches/woocommerce-pagseguro"
},
"scripts": {
"autoprefixer": "postcss -u --no-map autoprefixer -r assets/css/**/*.css",
"babel:admin": "babel assets/js/admin --out-dir assets/js/admin --out-file-extension .min.js --ignore '**/*.min.js'",
"babel:frontend": "babel assets/js/frontend --out-dir assets/js/frontend --out-file-extension .min.js --ignore '**/*.min.js'",
"build:css": "npm-run-all -s scss autoprefixer",
"build:js": "npm-run-all -s babel:*",
"build:md": "wp-readme-to-md --screenshot-url=https://ps.w.org/woocommerce-pagseguro/assets/{screenshot}.png",
"build:pot": "composer run-script makepot",
"build": "npm-run-all -s lint:* build:*",
"lint:js": "eslint assets/js",
"lint:php": "composer run-script phpcs",
"lint:scss": "stylelint assets/scss/**/*.scss",
"scss": "sass --no-source-map --style=compressed assets/scss:assets/css",
"watch:jsadmin": "npm run babel:admin -- --watch",
"watch:jsfrontend": "npm run babel:frontend -- --watch",
"watch:scss": "npm run scss -- --watch --update",
"watch": "npm-run-all -p watch:*"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@wordpress/babel-preset-default": "^7.16.0",
"@wordpress/eslint-plugin": "^14.5.0",
"@wordpress/stylelint-config": "^21.15.0",
"autoprefixer": "^10.4.14",
"babel-preset-minify": "^0.5.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"uglify": "^0.1.5",
"wp-readme-to-markdown": "^1.0.1"
}
}