forked from RobStino/progress-indicator-block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.82 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
{
"name": "wp-block-tutorial",
"version": "0.1.0",
"description": "A block for adding a progress indicator",
"author": "Rob Stinson",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress"
],
"homepage": "https://github.com/kienstra/wp-block-tutorial",
"repository": {
"url": "https://github.com/kienstra/wp-block-tutorial/issues"
},
"bugs": "https://github.com/kienstra/wp-block-tutorial/issues",
"engines": {
"node": "14"
},
"main": "js/dist/index.js",
"dependencies": {
"@wordpress/block-editor": "^9.0.0",
"@wordpress/blocks": "^11.7.0",
"@wordpress/components": "^19.6.1",
"@wordpress/data": "^6.8.0",
"@wordpress/i18n": "^4.8.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/wordpress__block-editor": "^6.0.5",
"@types/wordpress__components": "^19.3.0",
"@wordpress/env": "^4.3.1",
"@wordpress/scripts": "^22.2.1",
"acorn": "^8.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx": "^0.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.0",
"typescript": "^4.6.2"
},
"scripts": {
"check-licenses": "wp-scripts check-licenses --prod --gpl2",
"build": "wp-scripts build",
"dev": "wp-scripts start",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "wp-scripts lint-style css",
"lint:css:fix": "wp-scripts lint-style css --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:js": "wp-scripts lint-js js/src",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:php": "composer lint",
"lint:php:fix": "composer lint-fix",
"packages-update": "wp-scripts packages-update",
"test:js": "wp-scripts test-unit-js",
"wp-env": "wp-env"
}
}