forked from mtoensing/simpletoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.9 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
71
{
"name": "@wearerequired/simpletoc-block",
"version": "1.0.0",
"description": "SEO-friendly Table of Contents Gutenberg block. No JavaScript and no CSS means faster loading.",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "wp-scripts build",
"start": "wp-scripts start",
"lint-js": "wp-scripts lint-js",
"lint-js:fix": "wp-scripts lint-js --fix",
"lint-css": "wp-scripts lint-style",
"lint-css:fix": "wp-scripts lint-style --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wearerequired/simpletoc-block.git"
},
"author": "required gmbh",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/wearerequired/simpletoc-block/issues"
},
"homepage": "https://github.com/wearerequired/simpletoc-block#readme",
"devDependencies": {
"@wearerequired/browserslist-config": "0.3.0",
"@wearerequired/eslint-config": "3.0.0",
"@wearerequired/postcss-config": "1.0.0",
"@wearerequired/stylelint-config": "3.0.0",
"@wordpress/scripts": "24.0.0",
"prettier": "npm:[email protected]",
"ansi-regex": ">=6.0.1",
"markdown-it": ">=12.3.2",
"nanoid": ">=3.1.31",
"node-fetch": ">=3.2.10",
"nth-check": ">=2.0.1",
"postcss": ">=8.4.5"
},
"dependencies": {
"@wordpress/i18n": "^4.17.0",
"@wordpress/server-side-render": "^3.15.0"
},
"stylelint": {
"extends": [
"@wearerequired/stylelint-config"
]
},
"eslintConfig": {
"extends": [
"@wearerequired/eslint-config"
],
"rules": {
"@wordpress/i18n-text-domain": [
"error",
{
"allowedTextDomain": [
"simpletoc-block"
]
}
]
}
},
"browserslist": [
"extends @wearerequired/browserslist-config/modern"
],
"babel": {
"presets": [
"@wordpress/babel-preset-default"
]
}
}