-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.53 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
89
90
91
{
"name": "insert-post-block",
"title": "Insert Post Block",
"description": "",
"version": "1.0.0",
"author": "MyPreview",
"author_shop": "https://www.mypreview.one",
"author_uri": "https://mahdiyazdani.com",
"requires": "5.2",
"tested_up_to": "5.5",
"license": "GPL-3.0",
"copyright": "© 2015 - 2020 MyPreview. All Rights Reserved.",
"repository": {
"type": "git",
"url": "https://github.com/mypreview/insert-post-block.git"
},
"bugs": {
"url": "https://github.com/mypreview/insert-post-block/issues"
},
"scripts": {
"build": "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 'src/**/*.css'",
"lint:css-fix": "wp-scripts lint-style 'src/**/*.css' --fix",
"lint:js": "wp-scripts lint-js src/",
"lint:js-fix": "wp-scripts lint-js src/ --fix",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:md:js": "wp-scripts lint-md-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"dev": "wp-scripts start",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"lint:wpcs": "composer lint:wpcs",
"lint:wpcs-fix": "composer lint:wpcbf",
"lint:php": "composer lint:php",
"makepot": "composer make-pot"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@wordpress/scripts": "^12.5.0",
"autoprefixer": "^9.8.6",
"chalk": "^4.1.0",
"classnames": "^2.2.6",
"husky": "^4.3.0",
"license-checker-webpack-plugin": "^0.1.5",
"lint-staged": "^10.5.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-calc": "^7.0.2",
"postcss-combine-media-query": "^1.0.1",
"postcss-flexbox": "^1.0.3",
"postcss-hidden": "^1.0.7",
"postcss-if-media": "^1.0.3",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"postcss-nested-ancestors": "^2.0.0",
"postcss-position": "^1.1.0",
"postcss-selector-not": "^4.0.0",
"postcss-size": "^3.0.0",
"progress-bar-webpack-plugin": "^2.1.0",
"rename-keys": "^2.0.1",
"webpack-notifier": "^1.8.0",
"webpack-rtl-plugin": "^2.0.0"
},
"engines": {
"node": "12.19.1",
"npm": "6.14.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.css": [
"npm run lint:css-fix"
],
"*.js": [
"npm run lint:js-fix",
"npm run format:js"
],
"*.php": [
"npm run lint:wpcs-fix"
]
}
}