https://github.com/PressForward/pressforward
Raw File
Tip revision: d0e0089207a458172ca046bce146954eaeed5ee8 authored by Boone B Gorges on 19 September 2023, 21:00:31 UTC
Improved Bootstrap styling for tabbed interfaces.
Tip revision: d0e0089
package.json
{
	"name": "pressforward",
	"version": "5.5.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"
	},
	"devDependencies": {
		"@babel/core": "^7.14.3",
		"@babel/preset-env": "^7.14.4",
		"@selfisekai/gulp-sass": "^4.2.0",
		"@wordpress/scripts": "^25.4.0",
		"gulp": "^4.0.2",
		"gulp-babel": "^8.0.0",
		"gulp-clean-css": "^4.3.0",
		"gulp-ext-replace": "^0.3.0",
		"gulp-sourcemaps": "^3.0.0",
		"gulp-uglify": "^3.0.2",
		"node-gyp": "^7.1.2",
		"sass": "^1.25.0",
		"style-loader": "^3.3.3"
	},
	"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 -- .",
		"start": "wp-scripts start assets/src/add-feeds/add-feeds.js assets/src/bootstrap/bootstrap.js assets/src/edit-feeds/edit-feeds.js assets/src/nominate-this/nominate-this.js assets/src/quick-edit/quick-edit.js assets/src/reader/reader.js assets/src/scroll/scroll.js",
		"build": "wp-scripts build assets/src/add-feeds/add-feeds.js assets/src/bootstrap/bootstrap.js assets/src/edit-feeds/edit-feeds.js assets/src/nominate-this/nominate-this.js assets/src/quick-edit/quick-edit.js assets/src/reader/reader.js assets/src/scroll/scroll.js"
	},
	"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",
	"dependencies": {
		"@mozilla/readability": "^0.4.2",
		"bootstrap": "^5.3.2",
		"dompurify": "^3.0.0",
		"infinite-scroll": "^4.0.1",
		"url-search-params-polyfill": "^8.1.1",
		"whatwg-fetch": "^3.6.2"
	}
}
back to top