forked from xwp/stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.5 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
{
"name": "wp-stream",
"private": true,
"description": "Stream tracks logged-in user activity so you can monitor every change made on your WordPress site in beautifully organized detail. All activity is organized by context, action and IP address for easy filtering. Developers can extend Stream with custom connectors to log any kind of action.",
"main": "stream.php",
"author": "XWP",
"license": "GPLv2+",
"engines": {
"node": ">=12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xwp/stream.git"
},
"bugs": {
"url": "https://github.com/xwp/stream/issues"
},
"homepage": "https://github.com/xwp/stream#readme",
"keywords": [
"wp",
"stream",
"stream",
"activity",
"logs",
"track"
],
"devDependencies": {
"@wordpress/eslint-plugin": "^7.2.1",
"eslint": "^7.10.0",
"grunt": "~1.3.0",
"grunt-contrib-clean": "~2.0.0",
"grunt-contrib-compress": "^1.6.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-cssmin": "~3.0.0",
"grunt-contrib-uglify": "~5.0.0",
"grunt-wp-deploy": "^2.1.2"
},
"scripts": {
"postinstall": "composer install && npm run build",
"build": "grunt build",
"release": "grunt release",
"deploy": "grunt deploy",
"lint-js": "eslint .",
"lint-php": "composer lint",
"lint": "npm run lint-js && npm run lint-php",
"build-containers": "docker-compose --file docker-compose.build.yml build",
"push-containers": "docker-compose --file docker-compose.build.yml push",
"stop-all": "docker stop $(docker ps -a -q)",
"cli": "docker-compose run --rm --user $(id -u) wordpress xwp_wait db_phpunit:3306 -t 60 --",
"vcli": "vagrant ssh -- docker-compose -f /vagrant/docker-compose.yml run --rm --user $(id -u) wordpress xwp_wait db_phpunit:3306 -t 60 --",
"phpunit": "npm run cli -- composer test --working-dir=wp-content/plugins/stream-src",
"phpunit-multisite": "npm run cli -- composer test-multisite --working-dir=wp-content/plugins/stream-src",
"vphpunit": "npm run vcli -- composer test --working-dir=wp-content/plugins/stream-src",
"vphpunit-multisite": "npm run vcli -- composer test-multisite --working-dir=wp-content/plugins/stream-src",
"phpunit-report": "npm run cli -- composer test-report --working-dir=wp-content/plugins/stream-src",
"vphpunit-report": "npm run vcli -- composer test-report --working-dir=wp-content/plugins/stream-src",
"vcompose": "vagrant ssh -- docker-compose -f /vagrant/docker-compose.yml"
},
"dependencies": {}
}