-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "wp-dashboard-messages",
"version": "1.1.6",
"description": "Show Messages on the WP Admin Dashboard.",
"private": true,
"scripts": {
"ver": "echo \"<?php return $(jq .version < ./package.json);\" > include/version.php",
"dashicons": "node ./src/run/dashicons.js",
"postinstall": "composer install",
"sec-audit": "./vendor/squizlabs/php_codesniffer/bin/phpcs . --report=code --standard=./phpcs-security.ruleset.xml -n -s > ./phpcs-sec-report.txt || exit 0",
"audit": "./vendor/squizlabs/php_codesniffer/bin/phpcs . --report=code --standard=./phpcs.ruleset.xml -n -s > ./phpcs-report.txt || exit 0",
"audit-fix": "./vendor/squizlabs/php_codesniffer/bin/phpcbf . --standard=./phpcs.ruleset.xml || exit 0",
"rollback": "git reset --hard HEAD~ && git push origin +master",
"dev": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com//wp-dashboard-messages.git"
},
"author": "Jörn Lund",
"license": "ISC",
"bugs": {
"url": "https://github.com//wp-dashboard-messages/issues"
},
"browserslist": [
"last 3 versions",
"> 0.25%",
"IE 10"
],
"homepage": "https://github.com//wp-dashboard-messages#readme",
"dependencies": {
"request": "^2.88.0"
},
"wporg": {
"steps": [
"build",
"git",
"github",
"wporg"
],
"type": "plugin",
"build": {
"versionedFiles": null,
"prebuild": [
"wp i18n make-pot . languages/wp-dashboard-messages.pot --domain=wp-dashboard-messages --exclude=tmp"
],
"build": [
"gulp build"
]
},
"git": {
"host": "github.com",
"user": "mcguffin"
},
"wporg": {
"assets": ".wporg",
"svn_user": "podpirate",
"svn": "https://plugins.svn.wordpress.org/wp-dashboard-messages/"
}
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"sass": "^1.38.1"
}
}