-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 975 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 975 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
27
28
29
30
31
32
33
34
35
36
{
"name": "gutenberg-array-save",
"version": "0.0.1",
"description": "Save Gutenberg data as clean array",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/royboy789/gutenberg-array-save.git"
},
"keywords": [
"Gutenberg",
"WordPress",
"PHP",
"JavaScript"
],
"author": "Roy Sivan",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/royboy789/gutenberg-array-save/issues"
},
"homepage": "https://github.com/royboy789/gutenberg-array-save#readme",
"devDependencies": {
"@wordpress/hooks": "^1.1.7",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.3",
"lodash": "^4.17.21",
"webpack": "^3.10.0"
},
"scripts": {
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
"dev": "cross-env BABEL_ENV=default webpack --watch"
}
}