forked from vermiliondesign/gutenberg-post-selector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 863 Bytes
/
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
{
"name": "@vermilion/post-selector",
"version": "1.0.2",
"description": "A Gutenberg component that allows you to attach posts and pages to a custom block",
"main": "index.js",
"scripts": {
"build": "parcel build src/index.js -d ./"
},
"repository": {
"type": "git",
"url": "https://github.com/vermiliondesign/gutenberg-post-selector.git"
},
"keywords": [
"gutenberg",
"rest",
"wp",
"wordpress",
"posts",
"pages",
"search",
"addbysearch"
],
"author": "Matt Dickey <mattdickey@vermilion.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-react": "^7.0.0",
"@wordpress/babel-plugin-import-jsx-pragma": "^1.1.3",
"parcel": "^1.11.0"
},
"dependencies": {
"react": "^16.7.0"
}
}