This repository has been archived by the owner on Nov 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
115 lines (115 loc) · 3.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "block-lab",
"title": "Block Lab",
"version": "1.6.0",
"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"
},
"devDependencies": {
"@testing-library/jest-dom": "5.11.2",
"@testing-library/react": "10.4.8",
"@testing-library/user-event": "12.1.0",
"@wordpress/a11y": "2.11.0",
"@wordpress/api-fetch": "3.18.0",
"@wordpress/babel-preset-default": "4.17.0",
"@wordpress/block-editor": "4.3.5",
"@wordpress/components": "10.0.4",
"@wordpress/compose": "3.19.3",
"@wordpress/core-data": "2.20.3",
"@wordpress/data": "4.22.3",
"@wordpress/dependency-extraction-webpack-plugin": "2.8.0",
"@wordpress/dom": "2.13.1",
"@wordpress/dom-ready": "2.10.0",
"@wordpress/e2e-test-utils": "4.11.1",
"@wordpress/e2e-tests": "1.20.3",
"@wordpress/editor": "9.20.5",
"@wordpress/element": "2.16.0",
"@wordpress/env": "1.6.0",
"@wordpress/eslint-plugin": "7.1.0",
"@wordpress/hooks": "2.9.0",
"@wordpress/html-entities": "2.8.0",
"@wordpress/i18n": "3.14.0",
"@wordpress/keycodes": "2.14.0",
"@wordpress/scripts": "12.1.1",
"@wordpress/server-side-render": "1.16.4",
"@wordpress/url": "2.17.0",
"autoprefixer": "9.8.6",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"classnames": "2.2.6",
"cross-env": "7.0.2",
"css-loader": "4.2.1",
"del": "5.1.0",
"eslint": "7.6.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest-dom": "3.1.6",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-testing-library": "3.4.1",
"gulp": "4.0.2",
"gulp-run": "1.7.1",
"gulp-string-replace": "1.1.2",
"husky": "4.2.5",
"ignore-emit-webpack-plugin": "2.0.2",
"jest-axe": "3.5.0",
"jest-environment-jsdom-sixteen": "1.0.3",
"jest-silent-reporter": "0.2.1",
"lodash": "4.17.19",
"merge-stream": "2.0.0",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.1",
"npm-run-all": "4.1.5",
"postcss-loader": "3.0.0",
"puppeteer": "npm:[email protected]",
"raw-loader": "4.0.1",
"re-resizable": "6.5.4",
"react": "16.13.1",
"sass-loader": "9.0.3",
"style-loader": "1.2.1",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.44.1",
"webpack-cli": "3.3.12"
},
"scripts": {
"check-licenses": "wp-scripts check-licenses --prod --gpl2",
"build": "wp-scripts build",
"dev": "wp-scripts start",
"env": "wp-env",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "wp-scripts lint-js js tests/e2e",
"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",
"packages-update": "wp-scripts packages-update",
"test:e2e": "wp-scripts test-e2e --config=tests/e2e/jest.config.js --runInBand",
"test:e2e:interactive": "npm run test:e2e -- --puppeteer-interactive",
"test:js": "wp-scripts test-unit-js --config=tests/js/jest.config.js",
"test:js:coverage": "npm run test:js -- --coverage --coverageDirectory=tests/coverage/js",
"test:js:watch": "npm run test:js -- --watch"
},
"wp-env": {
"plugin-dir": "block-lab",
"plugin-name": "Block Lab"
},
"husky": {
"hooks": {
"pre-commit": "./bin/pre-commit.sh"
}
}
}