-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "@humanmade/block-editor-components",
"version": "0.7.0",
"description": "Reusable components, hooks and helper functions for the WordPress block editor(s).",
"keywords": [
"block editor",
"gutenberg",
"wordpress"
],
"homepage": "https://github.com/humanmade/block-editor-components#readme",
"bugs": "https://github.com/humanmade/block-editor-components/issues",
"license": "GPL-2.0-or-later",
"author": {
"name": "Human Made",
"url": "https://humanmade.com"
},
"main": "dist/index.js",
"repository": "github:humanmade/block-editor-components",
"scripts": {
"build": "webpack",
"start": "webpack watch --mode development",
"lint": "eslint .",
"test": "jest",
"version": "npm run build"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@humanmade/eslint-config": "^1.1.3",
"@wordpress/babel-preset-default": "^7.14.0",
"@wordpress/data": "^7.4.0",
"@wordpress/dependency-extraction-webpack-plugin": "^4.13.0",
"@wordpress/html-entities": "^3.20.0",
"@wordpress/i18n": "^4.20.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.5.0",
"babel-loader": "^8.3.0",
"eslint": "^8.37.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^39.3.23",
"eslint-plugin-jsonc": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"jest": "^29.5.0",
"react": "^17.0.2",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.77.0",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"classnames": "^2.3.2"
}
}