Socket
Socket
Sign inDemoInstall

@vxna/mini-html-webpack-template

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vxna/mini-html-webpack-template - npm Package Compare versions

Comparing version 1.0.0 to 2.0.0

src/index.js

75

package.json
{
"name": "@vxna/mini-html-webpack-template",
"version": "1.0.0",
"version": "2.0.0",
"description": "Minimum viable template for mini-html-webpack-plugin",
"author": "@vxna",
"author": "vxna",
"license": "MIT",
"main": "index.js",
"main": "src/index.js",
"files": [
"index.js"
"src/**/*.js"
],

@@ -20,14 +20,10 @@ "repository": {

"engines": {
"node": ">= 6.9.0"
"node": ">= 10"
},
"scripts": {
"pretest": "npm run lint",
"test": "npm run test:jest",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"posttest": "npm run format",
"lint": "eslint . --cache --fix",
"format": "prettier --write **/*.{js,md}",
"precommit": "lint-staged"
"pretest": "yarn lint",
"lint": "eslint src/**/*.js --format codeframe --fix",
"test": "jest",
"format": "prettier src/**/*.{js,md} --write",
"posttest": "yarn format"
},

@@ -39,19 +35,23 @@ "dependencies": {

"@webpack-contrib/test-utils": "^0.1.3",
"css-loader": "^2.1.1",
"eslint": "^5.15.3",
"eslint-config-tamia": "^6.0.2",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.5.0",
"mini-html-webpack-plugin": "^0.2.3",
"prettier": "^1.16.4",
"semantic-release": "^15.13.3",
"webpack": "^4.29.6"
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"mini-css-extract-plugin": "^0.9.0",
"mini-html-webpack-plugin": "^2.2.1",
"prettier": "^1.19.1",
"webpack": "^4.41.5"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "tamia"
"extends": [
"standard",
"prettier"
]
},

@@ -62,13 +62,18 @@ "prettier": {

},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
"eslint --fix"
],
"*.md": [
"prettier --write",
"git add"
"*.{js,md}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
}
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc