https://github.com/PressForward/pressforward
Revision 107d2d14df558b265ee463478f0b2233bad5ef57 authored by Aram Zucker-Scharff on 09 October 2018, 14:57:27 UTC, committed by GitHub on 09 October 2018, 14:57:27 UTC
1 parent 30e9798
Raw File
Tip revision: 107d2d14df558b265ee463478f0b2233bad5ef57 authored by Aram Zucker-Scharff on 09 October 2018, 14:57:27 UTC
Namespace fixes for older PHP versions
Tip revision: 107d2d1
package.json
{
	"name": "pressforward",
	"version": "5.0.0",
	"description": "PressForward is a free plugin that provides an editorial workflow for content aggregation and curation within the WordPress dashboard. It is designed for bloggers and editorial teams who wish to collect, discuss, and share content from a variety of sources on the open web. ",
	"main": "assets/js/pf.js",
	"directories": {
		"test": "tests"
	},
	"dependencies": {
		"gulp": "~3.9.0",
		"gulp-sass": "~2.0.4"
	},
	"devDependencies": {
		"gulp": "~3.9.0",
		"gulp-clean-css": "^3.9.2",
		"gulp-ext-replace": "^0.3.0",
		"gulp-sass": "~2.0.4",
		"gulp-sourcemaps": "^2.6.4",
		"gulp-uglify": "^3.0.0"
	},
	"scripts": {
		"test": "test",
		"commitmsg": "node ./scripts/commit-msg",
		"precommit": "lint-staged",
		"fmt:prettier": "prettier --write --single-quote --use-tabs --tab-width 4",
		"lint": "run-p lint:js",
		"lint:eslint": "eslint --ignore-path .gitignore",
		"lint:js": "npm run lint:eslint -- ."
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/PressForward/pressforward.git"
	},
	"keywords": [
		"pressforward"
	],
	"lint-staged": {
		"**/!(*.min).js": [
			"fmt:prettier",
			"lint:eslint",
			"git add"
		],
		"**/!(*.min).sass": [
			"fmt:prettier",
			"git add"
		]
	},
	"author": "Aram Zucker-Scharff, PressForward team",
	"license": "ISC",
	"bugs": {
		"url": "https://github.com/PressForward/pressforward/issues"
	},
	"homepage": "https://github.com/PressForward/pressforward"
}
back to top