forked from xwp/stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.08 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
{
"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": "^4.1.0",
"eslint": "^6.8.0",
"grunt": "~1.1.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": "~4.0.1",
"grunt-wp-deploy": "^2.0.0"
},
"scripts": {
"postinstall": "composer install && npm run build",
"build": "grunt default",
"release": "grunt release",
"deploy": "grunt deploy",
"lint-js": "eslint .",
"lint-php": "composer lint",
"lint": "npm run lint-js && npm run lint-php",
"cli": "./local/vagrant/cli.sh",
"compose": "./local/vagrant/docker-compose.sh",
"phpunit": "npm run cli -- composer test --working-dir=wp-content/plugins/stream-src",
"phpunit-report": "npm run cli -- composer test-report --working-dir=wp-content/plugins/stream-src",
"vcli": "vagrant ssh -- DOCKER_COMPOSE_FILE=/vagrant/docker-compose.yml /vagrant/local/vagrant/cli.sh",
"vcompose": "vagrant ssh -- DOCKER_COMPOSE_FILE=/vagrant/docker-compose.yml /vagrant/local/vagrant/docker-compose.sh",
"vphpunit": "npm run vcli -- composer test --working-dir=wp-content/plugins/stream-src",
"vphpunit-report": "npm run vcli -- composer test-report --working-dir=wp-content/plugins/stream-src"
},
"dependencies": {}
}