forked from 10up/block-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.82 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
65
66
67
68
{
"name": "@10up/block-components",
"publishConfig": {
"access": "public"
},
"version": "1.15.3",
"description": "10up Components built for the WordPress Block Editor.",
"main": "./dist/index.js",
"source": "index.js",
"scripts": {
"lint": "10up-toolkit lint-js",
"test": "10up-toolkit test-unit-jest",
"build": "10up-toolkit build",
"start": "10up-toolkit start",
"build-test-env": "npm run build --workspaces --if-present",
"start-test-env": "npm run start-env -w example/ && npm run import-media -w example/",
"test:e2e": "cypress open",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/10up/block-components.git"
},
"workspaces": [
"./",
"example/"
],
"keywords": [
"gutenberg",
"WordPress",
"block-editor"
],
"author": {
"name": "10up",
"email": "info@10up.com",
"url": "https://10up.com"
},
"files": [
"dist",
"README.md"
],
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/10up/block-components.git/issues"
},
"homepage": "https://github.com/10up/block-components.git#readme",
"dependencies": {
"@dnd-kit/core": "^6.0.6",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.1",
"@dnd-kit/utilities": "^3.2.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@floating-ui/react-dom": "^1.0.1",
"@wordpress/icons": "^9.14.0",
"array-move": "^3.0.1",
"cypress": "^12.1.0",
"prop-types": "^15.8.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@10up/cypress-wp-utils": "github:10up/cypress-wp-utils#build",
"@wordpress/dependency-extraction-webpack-plugin": "^4.6.0",
"10up-toolkit": "^4.3.1",
"classnames": "^2.3.2",
"cypress-localstorage-commands": "^2.2.2"
}
}