-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1 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
{
"name": "block-editor-hmr",
"version": "0.7.0",
"description": "Utilities to autoload and hot-reload WordPress Block Editor modules.",
"main": "build.js",
"homepage": "https://github.com/kadamwhite/block-editor-hmr#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kadamwhite/block-editor-hmr.git"
},
"keywords": [
"webpack",
"hmr"
],
"author": "K Adam White",
"license": "ISC",
"bugs": {
"url": "https://github.com/kadamwhite/block-editor-hmr/issues"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 10"
],
"scripts": {
"prepublish": "npm run build",
"build": "babel index.js --out-file build.js",
"lint": "eslint index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "^7.10.4",
"core-js": "^2.6.11",
"eslint": "^8.40.0"
}
}