2021-01-08 14:08:40 +01:00
|
|
|
{
|
|
|
|
"name": "connector-mobilizon",
|
2024-04-06 08:25:16 +02:00
|
|
|
"version": "1.0.0-next",
|
2021-05-06 09:50:08 +02:00
|
|
|
"description": "Display Mobilizon events in WordPress.",
|
2021-01-08 14:08:40 +01:00
|
|
|
"private": true,
|
2022-01-09 12:11:24 +01:00
|
|
|
"type": "module",
|
2021-01-08 14:08:40 +01:00
|
|
|
"scripts": {
|
2021-11-09 22:10:35 +01:00
|
|
|
"build-dev": "webpack --mode=development && gulp inject",
|
2023-07-25 22:25:55 +02:00
|
|
|
"build-prod": "rimraf -- build && ava && webpack --mode=production && gulp inject",
|
2021-11-09 22:10:35 +01:00
|
|
|
"clean": "rimraf -- build",
|
2021-04-13 20:17:07 +02:00
|
|
|
"coverage": "c8 --all --reporter=html --reporter=text --include=source/**/*.js ava",
|
2021-04-05 17:53:47 +02:00
|
|
|
"eslint": "npx eslint source/**/*.js",
|
2021-12-09 19:46:19 +01:00
|
|
|
"format": "npx prettier --write .",
|
2024-04-06 07:41:15 +02:00
|
|
|
"prepare": "husky",
|
2024-04-05 23:26:11 +02:00
|
|
|
"test": "ava && ./vendor/bin/phpunit"
|
2021-01-08 14:08:40 +01:00
|
|
|
},
|
|
|
|
"author": {
|
|
|
|
"name": "Daniel Waxweiler",
|
|
|
|
"url": "https://www.danielwaxweiler.net/"
|
|
|
|
},
|
2021-03-28 22:28:32 +02:00
|
|
|
"funding": {
|
2021-04-04 10:00:02 +02:00
|
|
|
"type": "individual",
|
2021-03-28 22:28:32 +02:00
|
|
|
"url": "https://paypal.me/dwaxweiler"
|
|
|
|
},
|
2021-01-08 14:08:40 +01:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"dependencies": {
|
2023-11-11 20:28:16 +01:00
|
|
|
"graphql": "16.8.1",
|
2024-04-05 23:44:53 +02:00
|
|
|
"luxon": "3.4.4"
|
2021-01-08 14:08:40 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-05-15 09:31:06 +02:00
|
|
|
"@babel/core": "7.24.5",
|
|
|
|
"@babel/eslint-parser": "7.24.5",
|
|
|
|
"@babel/preset-env": "7.24.5",
|
2024-04-05 23:39:30 +02:00
|
|
|
"@babel/preset-react": "7.24.1",
|
2024-05-15 09:31:06 +02:00
|
|
|
"@wordpress/eslint-plugin": "18.0.0",
|
|
|
|
"ava": "6.1.3",
|
2023-07-25 20:03:31 +02:00
|
|
|
"babel-loader": "9.1.3",
|
2022-06-03 23:48:19 +02:00
|
|
|
"browser-env": "3.3.0",
|
2024-04-06 07:41:15 +02:00
|
|
|
"c8": "9.1.0",
|
2024-04-05 23:39:30 +02:00
|
|
|
"copy-webpack-plugin": "12.0.2",
|
|
|
|
"eslint": "8.57.0",
|
2023-02-12 18:11:24 +01:00
|
|
|
"eslint-plugin-ava": "14.0.0",
|
2022-06-03 23:48:19 +02:00
|
|
|
"eslint-plugin-jsx": "0.1.0",
|
2024-04-05 23:39:30 +02:00
|
|
|
"eslint-plugin-react": "7.34.1",
|
2022-03-20 10:25:05 +01:00
|
|
|
"esm": "3.2.25",
|
2024-05-16 09:57:35 +02:00
|
|
|
"gulp": "5.0.0",
|
2023-02-12 17:56:48 +01:00
|
|
|
"gulp-replace": "1.1.4",
|
2024-04-06 07:41:15 +02:00
|
|
|
"husky": "9.0.11",
|
2024-04-05 23:39:30 +02:00
|
|
|
"lint-staged": "15.2.2",
|
|
|
|
"prettier": "3.2.5",
|
2024-05-15 09:31:06 +02:00
|
|
|
"rimraf": "5.0.7",
|
2024-04-05 23:39:30 +02:00
|
|
|
"webpack": "5.91.0",
|
2023-07-25 20:03:31 +02:00
|
|
|
"webpack-cli": "5.1.4"
|
2021-01-08 14:08:40 +01:00
|
|
|
},
|
|
|
|
"ava": {
|
|
|
|
"files": [
|
|
|
|
"./source/**/*test.js"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"additionalDetails": {
|
|
|
|
"niceName": "Connector for Mobilizon",
|
2023-05-07 17:41:36 +02:00
|
|
|
"phpMinimumVersion": 7.4,
|
2021-01-08 14:08:40 +01:00
|
|
|
"wordpressMinimumVersion": 5.6,
|
2024-07-18 18:51:47 +02:00
|
|
|
"wordpressTestedUpToVersion": "6.6"
|
2021-12-09 19:54:38 +01:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"source/**/*.js": "eslint",
|
|
|
|
"**/*": "prettier --write --ignore-unknown"
|
2021-01-08 14:08:40 +01:00
|
|
|
}
|
|
|
|
}
|