-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.41 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "breadcrumbs-block",
"version": "1.0.0",
"description": "Breadcrumbs block for WordPress Gutenberg block editor",
"author": "phpbits",
"license": "GPL-2.0-or-later",
"keywords": [
"gutenberg",
"breadcrumbs",
"breadcrumbs block"
],
"homepage": "http://github.com/phpbits/breadcrumbs-block",
"repository": "http://github.com/phpbits/breadcrumbs-block",
"bugs": {
"url": "http://github.com/phpbits/breadcrumbs-block/issues"
},
"babel": {
"presets": [
"@wordpress/default"
],
"plugins": [
[
"@wordpress/babel-plugin-makepot",
{
"output": "languages/breadcrumbs-block.pot"
}
]
]
},
"devDependencies": {
"@babel/runtime": "^7.6.3",
"@wordpress/babel-plugin-makepot": "^3.2.1",
"@wordpress/babel-preset-default": "^4.6.2",
"@wordpress/blocks": "^6.19.0",
"@wordpress/eslint-plugin": "^7.1.0",
"@wordpress/i18n": "^3.12.0",
"@wordpress/scripts": "^7.2.0",
"babel-eslint": "^10.0.3",
"browser-sync-webpack-plugin": "^2.2.2",
"classnames": "^2.2.6",
"css-loader": "^3.2.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-react": "^7.16.0",
"ignore-emit-webpack-plugin": "^2.0.2",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.8.0",
"moment": "^2.24.0",
"node-sass": "^4.13.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "npm:[email protected]",
"sass-loader": "^8.0.0",
"stylelint-config-wordpress": "^17.0.0"
},
"scripts": {
"build": "npm-run-all makepot build-assets",
"build-assets": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style '**/*.scss'",
"lint:css-fix": "wp-scripts lint-style '**/*.scss' --fix",
"lint:js": "wp-scripts lint-js '**/*.js'",
"lint:js-fix": "wp-scripts lint-js '**/*.js' --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"start": "wp-scripts start",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"makepot": "wp i18n make-pot . languages/postslist-block.pot --exclude=node_modules,vendor,build"
},
"dependencies": {
"browser-sync": "^2.26.7"
},
"lint-staged": {
"*.scss": [
"npm run lint:css"
],
"*.js": [
"npm run lint:js"
],
"*.php": [
"composer run-script lint"
]
}
}