-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
64
{
"name": "@tomodomo/gutenberg-controls",
"version": "1.0.3",
"description": "Custom controls for the Gutenberg editor for WordPress",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/TomodomoCo/gutenberg-controls.git"
},
"keywords": [
"tomodomo",
"gutenberg",
"wordpress"
],
"author": {
"name": "Tomodomo",
"email": "[email protected]"
},
"contributors": [
{
"name": "Chris Van Patten"
}
],
"bugs": {
"url": "https://github.com/TomodomoCo/gutenberg-controls/issues"
},
"homepage": "https://github.com/TomodomoCo/gutenberg-controls#readme",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.54",
"@wordpress/components": "^1.0.1",
"classnames": "^2.2.6",
"lodash": "^4.17.10"
},
"devDependencies": {
"@wordpress/babel-preset-default": "^1.1.0",
"@wordpress/browserslist-config": "^2.1.0",
"@wordpress/i18n": "^1.0.0",
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.2",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.1",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.9",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"webpack": "^3.8.1",
"webpack-rtl-plugin": "^1.6.0"
},
"scripts": {
"prepare": "npm run build",
"build": "cross-env BABEL_ENV=default webpack"
},
"babel": {
"presets": [
"@wordpress/default"
]
},
"publishConfig": {
"access": "public"
}
}