-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.34 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
75
{
"name": "avatar-privacy",
"description": "GDPR-conformant avatar handling for WordPress",
"author": "Peter Putzer",
"license": "GPL-2.0-or-later",
"homepage": "https://code.mundschenk.at/avatar-privacy",
"browserslist": [
"last 2 version",
"> 1%"
],
"phpPrefixNamespaces": [
"Colors",
"Dice",
"Identicon",
"Jdenticon",
"Mundschenk",
"splitbrain"
],
"repository": {
"type": "git",
"url": "https://github.com/mundschenk-at/avatar-privacy.git"
},
"bugs": {
"url": "https://github.com/mundschenk-at/avatar-privacy/issues"
},
"devDependencies": {
"@babel/cli": "^7.17",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-modules": "^0.1.4",
"@lodder/grunt-postcss": "^3.1",
"@wordpress/scripts": "^26",
"autoprefixer": "^10.4",
"coffeescript": "^2.6",
"grunt": "^1.4.0",
"grunt-cli": "^1.4",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^2.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.1",
"grunt-eslint": "^24.0.0",
"grunt-exec": "^3.0.0",
"grunt-load-npm-run-tasks": "^1.0.3",
"grunt-newer": "^1.3.0",
"grunt-rename-util": "^1.0.0",
"grunt-sass": "^3.0.2",
"grunt-string-replace": "^1.3.1",
"grunt-wp-deploy": "^2.0.0",
"jshint-stylish": "^2.2.1",
"load-grunt-tasks": "^5.1.0",
"pixrem": "^5.0.0",
"sass": "^1.49"
},
"scripts": {
"build-blocks": "wp-scripts build admin/blocks/src/blocks.js --output-path=build/admin/blocks/js",
"build-wpdiscuz": "babel public/js/wpdiscuz/src/use-gravatar.js --out-file=public/js/wpdiscuz/use-gravatar.js",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"lint:css": "wp-scripts lint-style '**/scss/*.scss'",
"lint:js": "wp-scripts lint-js admin/blocks/src",
"lint:pkg-json": "wp-scripts lint-pkg-json ./package.json",
"start": "wp-scripts start admin/blocks/src/blocks.js --output-path=admin/blocks/js",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js"
},
"dependencies": {
"@wordpress/blocks": "^12",
"@wordpress/components": "^23",
"@wordpress/data": "^9",
"@wordpress/editor": "^13",
"@wordpress/element": "^5",
"@wordpress/i18n": "^4.2.0",
"@wordpress/server-side-render": "^4"
}
}