UNPKG

create-phtml-plugin

Version:
65 lines (64 loc) 1.55 kB
{ "name": "create-phtml-plugin", "version": "4.2.0", "description": "Quickly create new pHTML plugins", "author": "Jonathan Neal <jonathantneal@hotmail.com>", "license": "CC0-1.0", "repository": "phtmlorg/create-phtml-plugin", "homepage": "https://github.com/phtmlorg/create-phtml-plugin#readme", "bugs": "https://github.com/phtmlorg/create-phtml-plugin/issues", "main": "index.js", "bin": { "create-phtml-plugin": "./index.js" }, "files": [ "index.js", "template" ], "scripts": { "lint": "eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet", "build": "rollup --config --silent", "prepublishOnly": "npm test && npm run build", "test": "npm run lint" }, "engines": { "node": ">=8.0.0" }, "devDependencies": { "@babel/core": "^7.4.4", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/preset-env": "^7.4.4", "babel-eslint": "^10.0.1", "eslint": "^5.16.0", "pre-commit": "^1.2.2", "rollup": "^1.12.1", "rollup-plugin-babel": "^4.3.2", "rollup-plugin-terser": "^4.0.4" }, "eslintConfig": { "env": { "browser": true, "es6": true, "node": true }, "extends": "eslint:recommended", "parser": "babel-eslint", "parserOptions": { "ecmaVersion": 2018, "impliedStrict": true, "sourceType": "module" }, "root": true, "rules": { "no-console": [ 0 ] } }, "keywords": [ "phtml", "html", "phtml-plugin", "boilerplate" ] }