add .distignore and package.json
This commit is contained in:
parent
ba457357dc
commit
a95c4bc308
2 changed files with 60 additions and 0 deletions
34
.distignore
Normal file
34
.distignore
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
.distignore
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
.php_cs
|
||||||
|
.svnignore
|
||||||
|
.wordpress-org
|
||||||
|
.wp-env.json
|
||||||
|
_config.yml
|
||||||
|
_site
|
||||||
|
bin
|
||||||
|
CHANGELOG.md
|
||||||
|
CODE_OF_CONDUCT.md
|
||||||
|
composer.json
|
||||||
|
composer.lock
|
||||||
|
Dockerfile
|
||||||
|
docs
|
||||||
|
docker-compose-test.yml
|
||||||
|
docker-compose.yml
|
||||||
|
FEDERATION.md
|
||||||
|
Gruntfile.js
|
||||||
|
Makefile
|
||||||
|
node_modules
|
||||||
|
npm-debug.log
|
||||||
|
package-lock.json
|
||||||
|
package.json
|
||||||
|
phpcs.xml
|
||||||
|
phpunit.xml
|
||||||
|
phpunit.xml.dist
|
||||||
|
README.md
|
||||||
|
readme.md
|
||||||
|
SECURITY.md
|
||||||
|
src
|
||||||
|
tests
|
||||||
|
vendor
|
26
package.json
Normal file
26
package.json
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "activitypub-event-bridge",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"author": {
|
||||||
|
"name": "André Menrath",
|
||||||
|
"web": "https://graz.social/@linos"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"dev": "wp-scripts start",
|
||||||
|
"build": "wp-scripts build",
|
||||||
|
"readme": "grunt wp_readme_to_markdown",
|
||||||
|
"env-start": "wp-env start && wp-env run cli wp rewrite structure '/%year%/%monthnum%/%postname%/'",
|
||||||
|
"env-stop": "wp-env stop"
|
||||||
|
},
|
||||||
|
"license": "AGPL-3.0",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://code.event-federation.eu/Event-Federation/wordpress-activitypub-event-bridge/issues"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@wordpress/env": "^10.10.0",
|
||||||
|
"@wordpress/scripts": "^30.0.2",
|
||||||
|
"classnames": "^2.3.2",
|
||||||
|
"grunt-wp-readme-to-markdown": "^2.0.1"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue