2021-01-08 14:08:40 +01:00
|
|
|
{
|
|
|
|
"name": "connector-mobilizon",
|
2021-08-24 19:35:10 +02:00
|
|
|
"version": "0.6.2",
|
2021-05-06 09:50:08 +02:00
|
|
|
"description": "Display Mobilizon events in WordPress.",
|
2021-01-08 14:08:40 +01:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2021-11-09 22:10:35 +01:00
|
|
|
"build-dev": "webpack --mode=development && gulp inject",
|
|
|
|
"build-prod": "ava && webpack --mode=production && gulp inject",
|
|
|
|
"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 .",
|
2021-12-09 18:14:05 +01:00
|
|
|
"prepare": "husky install",
|
2021-01-08 14:08:40 +01:00
|
|
|
"test": "ava"
|
|
|
|
},
|
|
|
|
"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": {
|
2021-12-23 16:49:43 +01:00
|
|
|
"graphql": "^16.2.0",
|
2021-12-09 18:23:57 +01:00
|
|
|
"graphql-request": "^3.7.0",
|
2021-12-23 16:49:43 +01:00
|
|
|
"luxon": "^2.2.0",
|
2021-06-02 10:36:59 +02:00
|
|
|
"object-hash": "^2.2.0"
|
2021-01-08 14:08:40 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"ava": "^3.15.0",
|
2021-10-26 20:11:16 +02:00
|
|
|
"c8": "^7.10.0",
|
2021-12-23 16:44:50 +01:00
|
|
|
"copy-webpack-plugin": "^10.2.0",
|
2021-12-09 18:09:25 +01:00
|
|
|
"eslint": "^8.4.1",
|
2021-10-26 20:11:16 +02:00
|
|
|
"eslint-plugin-ava": "^13.1.0",
|
2021-01-08 14:08:40 +01:00
|
|
|
"esm": "^3.2.25",
|
|
|
|
"gulp": "^4.0.2",
|
2021-05-20 09:33:05 +02:00
|
|
|
"gulp-replace": "^1.1.3",
|
2021-12-09 18:14:05 +01:00
|
|
|
"husky": "^7.0.4",
|
2021-12-09 18:09:25 +01:00
|
|
|
"jsdom": "^19.0.0",
|
2021-12-23 16:44:50 +01:00
|
|
|
"lint-staged": "^12.1.3",
|
2021-12-09 19:46:19 +01:00
|
|
|
"prettier": "2.5.1",
|
2021-11-09 22:10:35 +01:00
|
|
|
"rimraf": "^3.0.2",
|
2021-12-09 18:09:25 +01:00
|
|
|
"webpack": "^5.65.0",
|
2021-11-09 22:10:35 +01:00
|
|
|
"webpack-cli": "^4.9.1"
|
2021-01-08 14:08:40 +01:00
|
|
|
},
|
|
|
|
"ava": {
|
|
|
|
"files": [
|
|
|
|
"./source/**/*test.js"
|
|
|
|
],
|
|
|
|
"require": [
|
|
|
|
"esm"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"additionalDetails": {
|
|
|
|
"niceName": "Connector for Mobilizon",
|
2021-12-09 18:34:46 +01:00
|
|
|
"phpMinimumVersion": 7.4,
|
2021-01-08 14:08:40 +01:00
|
|
|
"wordpressMinimumVersion": 5.6,
|
2021-07-13 17:09:20 +02:00
|
|
|
"wordpressTestedUpToVersion": 5.8
|
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
|
|
|
}
|
|
|
|
}
|