-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.11 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
{
"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.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-modules": "^0.1.6",
"@lodder/grunt-postcss": "^3.1.1",
"@wordpress/scripts": "^30.7.0",
"autoprefixer": "^10.4.20",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-eslint": "^24.3.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.1.0",
"grunt-string-replace": "^1.3.3",
"grunt-wp-deploy": "^2.1.2",
"jshint-stylish": "^2.2.1",
"load-grunt-tasks": "^5.1.0",
"prettier": "^3.4.2",
"prop-types": "^15.8.1",
"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"
}
}