forked from liip/extend-block-example-wp-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 743 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 743 Bytes
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
{
"name": "extend-block-example",
"version": "1.0.0",
"description": "Example how to extend an existing Gutenberg block",
"scripts": {
"start": "parcel watch --no-hmr assets/js/extend-block-example.js -d dist",
"build": "parcel build assets/js/extend-block-example.js -d dist",
"lint": "eslint assets/js"
},
"author": "Liip AG",
"dependencies": {
"lodash.assign": "^4.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"eslint": "^5.16.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"parcel-bundler": "^1.12.3"
},
"private": true
}