This repository has been archived by the owner on Apr 21, 2020. It is now read-only.
forked from getblocklab/block-lab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.75 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
{
"name": "block-lab",
"title": "Block Lab",
"version": "1.5.4",
"description": "WordPress plugin with a simple templating system for building custom blocks.",
"author": "Block Lab",
"license": "GPL-2.0-or-later",
"keywords": [
"block-editor",
"wordpress",
"wordpress-plugin"
],
"homepage": "https://getblocklab.com",
"repository": {
"type": "git",
"url": "https://github.com/getblocklab/block-lab"
},
"bugs": {
"url": "https://github.com/getblocklab/block-lab/issues"
},
"dependencies": {
"classnames": "^2.2.6"
},
"devDependencies": {
"@testing-library/jest-dom": "5.1.1",
"@testing-library/react": "9.4.0",
"@wordpress/api-fetch": "3.10.0",
"@wordpress/babel-preset-default": "4.8.0",
"@wordpress/block-editor": "3.4.0",
"@wordpress/components": "8.5.0",
"@wordpress/compose": "3.9.0",
"@wordpress/data": "4.11.0",
"@wordpress/dependency-extraction-webpack-plugin": "2.1.0",
"@wordpress/dom": "2.8.0",
"@wordpress/editor": "9.9.0",
"@wordpress/element": "2.10.0",
"@wordpress/eslint-plugin": "3.3.0",
"@wordpress/hooks": "2.6.0",
"@wordpress/html-entities": "2.5.0",
"@wordpress/i18n": "3.7.0",
"@wordpress/keycodes": "2.7.0",
"@wordpress/scripts": "6.1.1",
"@wordpress/server-side-render": "1.5.0",
"@wordpress/url": "2.9.0",
"autoprefixer": "9.7.3",
"babel-core": "6.26.3",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"cross-env": "6.0.3",
"css-loader": "3.4.0",
"del": "^5.1.0",
"eslint": "6.7.2",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"gulp": "^4.0.2",
"gulp-run": "^1.7.1",
"gulp-string-replace": "^1.1.2",
"husky": "^4.0.10",
"jest-silent-reporter": "0.1.2",
"merge-stream": "^2.0.0",
"mini-css-extract-plugin": "0.8.2",
"node-sass": "^4.13.1",
"npm-run-all": "4.1.5",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.0",
"re-resizable": "6.1.1",
"react": "16.12.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.3",
"webpack-cli": "3.3.10"
},
"scripts": {
"check-licenses": "wp-scripts check-licenses --prod --gpl2",
"dev": "wp-scripts start",
"build": "wp-scripts build",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "wp-scripts lint-js js",
"lint:js:files": "wp-scripts lint-js",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:php": "vendor/bin/phpcs",
"lint:php:fix": "vendor/bin/phpcbf",
"precommit": "./bin/pre-commit.sh",
"test:js": "wp-scripts test-unit-js --config=tests/js/jest.config.js"
}
}