-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
74 lines (74 loc) · 2.14 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
72
73
74
{
"name": "wporg-mu-plugins",
"version": "0.0.1",
"description": "Over time, this is intended to become the canonical source repository for all `mu-plugins` on the WordPress.org network. At the moment, it only includes a few.",
"repository": {
"type": "git",
"url": "git+https://github.com/WordPress/wporg-mu-plugins.git"
},
"license": "GPL-2.0-or-later",
"private": true,
"bugs": {
"url": "https://github.com/WordPress/wporg-mu-plugins/issues"
},
"devDependencies": {
"@wordpress/browserslist-config": "5.34.0",
"@wordpress/env": "9.3.0",
"@wordpress/scripts": "27.9.0",
"chalk": "4.1.2",
"cross-spawn": "7.0.3",
"cssnano": "6.0.3",
"node-watch": "0.7.4",
"postcss": "8.4.33",
"postcss-cli": "11.0.0",
"postcss-import": "16.0.0",
"postcss-preset-env": "9.3.0",
"resolve-bin": "1.0.1",
"rtlcss": "4.1.1",
"url-loader": "4.1.1"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"scripts": {
"build": "NODE_ENV=production ./bin/build.js",
"build:dev": "NODE_ENV=development ./bin/build.js",
"font-subset": "./bin/font-subset.js",
"prestart": "./bin/build.js",
"start": "NODE_ENV=development ./bin/watch.js",
"lint:css": "wp-scripts lint-style **/*.pcss",
"lint:js": "wp-scripts lint-js **/src/**/*.js",
"setup:tools": "yarn install && composer install && TEXTDOMAIN=wporg composer exec update-configs",
"update:tools": "composer update && TEXTDOMAIN=wporg composer exec update-configs",
"wp-env": "wp-env",
"test:php": "wp-env run tests-cli --env-cwd=/var/www/html/ phpunit"
},
"rtlcssConfig": {},
"stylelint": {
"extends": "@wordpress/stylelint-config",
"rules": {
"max-line-length": null,
"no-duplicate-selectors": null,
"no-descending-specificity": null,
"rule-empty-line-before": [
"always-multi-line",
{
"except": [
"first-nested",
"after-single-line-comment"
]
}
],
"selector-class-pattern": null
}
},
"dependencies": {
"@googlemaps/markerclusterer": "^2.4.0",
"fast-glob": "^3.3.2",
"folder-hash": "^4.0.4",
"google-map-react": "^2.2.1",
"locutus": "^2.0.16",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1"
}
}