-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 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
{
"name": "wp-persistent-checkboxes",
"version": "0.1.0",
"description": "Wordpress block for checkboxes that persist their state in localStorage.",
"author": "Dylan Price",
"email": "the.dylan.price@gmail.com",
"license": "GPL-2.0-or-later",
"private": true,
"keywords": [],
"homepage": "https://bitbucket.org/dylanfprice/wp-persistent-checkboxes#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/dylanfprice/wp-persistent-checkboxes.git"
},
"bugs": null,
"main": "build/index.js",
"dependencies": {
"@wordpress/block-editor": "^3.5.0",
"@wordpress/blocks": "^6.10.0",
"@wordpress/element": "^2.10.0",
"md5": "^2.2.1"
},
"devDependencies": {
"@wordpress/scripts": "6.2.0",
"enzyme": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build",
"lint": "wp-scripts lint-pkg-json && wp-scripts lint-js && wp-scripts lint-style",
"test": "wp-scripts test-unit-js",
"test:debug": "node inspect node_modules/.bin/jest --runInBand"
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
]
}
}