UNPKG

formidable-playbook

Version:
51 lines (50 loc) 1.84 kB
{ "name": "formidable-playbook", "version": "0.1.2", "description": "The Formidable Playbook", "main": "", "scripts": { "build-md-toc": "doctoc --notitle README.md docs", "build-wp-clean": "find examples/frontend -name 'dist' | xargs echo ' ' | xargs rimraf", "build-wp-lib": "find examples/frontend -name 'webpack.*.lib.js' -exec webpack --config {} \\;", "build-wp-app": "find examples/frontend -name 'webpack.config.js' -exec webpack --config {} \\;", "build-wp": "npm run build-wp-clean && npm run build-wp-lib && npm run build-wp-app", "build": "npm run build-md-toc && npm run build-wp", "server": "http-server -p 3000 .", "lint": "eslint examples", "check-uncommitted": "test -z \"$(git status --porcelain)\" || (echo \"Uncommitted changes found: $(git status)\" && exit 1)", "check": "npm run lint", "check-ci": "npm run check && npm run build-md-toc && npm run check-uncommitted" }, "repository": { "type": "git", "url": "git+https://github.com/FormidableLabs/formidable-playbook.git" }, "keywords": [ "best practices", "frontend", "backend", "webpack" ], "author": "Ryan Roemer <ryan.roemer@formidable.com>", "license": "MIT", "bugs": { "url": "https://github.com/FormidableLabs/formidable-playbook/issues" }, "homepage": "https://github.com/FormidableLabs/formidable-playbook#readme", "devDependencies": { "babel-core": "^6.26.0", "babel-eslint": "^7.1.1", "babel-loader": "^7.1.1", "babel-preset-es2015": "^6.24.1", "doctoc": "^1.2.0", "eslint": "^3.13.1", "eslint-config-formidable": "^2.0.1", "eslint-plugin-filenames": "^1.1.0", "eslint-plugin-import": "^2.2.0", "http-server": "^0.9.0", "rimraf": "^2.5.2", "webpack": "^3.5.5", "webpack-stats-plugin": "^0.1.5" } }