-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.61 KB
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": "@frontkom/g-feature-box",
"version": "0.1.0",
"description": "A composition block for Gutenberg Cloud",
"private": false,
"main": "build/index.js",
"homepage": "https://github.com/Netkata/g-feature-box",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Netkata/g-feature-box"
},
"gutenbergCloud": {
"js": "build/index.js",
"css": "build/style.css",
"editor": "build/editor.css",
"screenshot": "screenshot.png",
"name": "Feature Box"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"start": "npm run build && BLOCK_DIR=$PWD npm --prefix node_modules/@frontkom/g-editor start",
"deploy": "npm run build && npm publish --access public"
},
"author": {
"name": "AJOTKA Agata Dobrowolska",
"email": "agata@netkata.com",
"url": "https://ajotka.com/"
},
"keywords": [
"gutenberg",
"gutenberg-cloud"
],
"engines": {
"node": ">=8.9.0",
"npm": ">=5.6.0"
},
"peerDependencies": {
"react": "^16.3.1"
},
"devDependencies": {
"@frontkom/g-editor": "^0.4.0-rc.1",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-preset-react-app": "^3.1.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"eslint": "^5.13.0",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"node-sass": "^4.9.3",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"url-loader": "^1.1.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"files": [
"build/",
"screenshot.png"
]
}