This repository has been archived by the owner on Oct 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
70 lines (70 loc) · 2.23 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
69
70
{
"name": "@yoast/schema-blocks",
"version": "1.8.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"private": false,
"dependencies": {
"@wordpress/block-editor": "^5.2.1",
"@wordpress/blocks": "^6.8.0",
"@wordpress/components": "^8.4.0",
"@wordpress/compose": "^3.11.0",
"@wordpress/data": "^4.26",
"@wordpress/editor": "^9.12.2",
"@wordpress/element": "^2.9.0",
"@wordpress/hooks": "^2.7.0",
"@wordpress/i18n": "^3.9.0",
"@yoast/components": "^2.19.0",
"lodash": "^4.17.15",
"tokenizr": "^1.5.2"
},
"devDependencies": {
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.15",
"@types/jquery": "^3.3.31",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.4",
"@types/react-test-renderer": "^17.0.0",
"@types/tokenizr": "^1.5.1",
"@types/wordpress__block-editor": "^2.2.5",
"@types/wordpress__blocks": "^6.4.12",
"@types/wordpress__compose": "^3.4.0",
"@types/wordpress__data": "^4.6.6",
"@types/wordpress__date": "^3.3.1",
"@types/wordpress__editor": "^9.4.1",
"@types/wordpress__element": "^2.4.0",
"@types/wordpress__hooks": "^2.4.0",
"@types/wordpress__i18n": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"eslint-config-yoast": "^5.0.7",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"jest": "^26.0.15",
"moment": "^2.24.0",
"react-test-renderer": "^16.12.0",
"react-with-direction": "^1.3.1",
"ts-jest": "^26.0.15",
"typescript": "^3.7.4",
"xmldom": "^0.1.27"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"scripts": {
"build": "yarn tsc",
"watch": "yarn tsc --watch",
"lint": "eslint \"src/**\"",
"lint-fix": "eslint \"src/**\" --fix",
"test": "jest",
"prepublishOnly": "rm -rf dist && yarn build && mkdir dist/css && cp -r css/*.css dist/css && cp package.json dist/package.json && json -I -f dist/package.json -e \"this.main='index.js'\" -e \"this.typings='index.d.ts'\""
},
"publishConfig": {
"access": "public"
},
"types": "/dist/index.d.ts"
}