Skip to content

Commit

Permalink
add package info keys to package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
swimmadude66 committed Oct 18, 2021
1 parent 805e53c commit bf81728
Showing 1 changed file with 51 additions and 43 deletions.
94 changes: 51 additions & 43 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,51 @@
{
"name": "html-webpack-skip-assets-plugin",
"version": "1.0.2",
"description": "a plugin for html-webpack-plugin to skip adding certain output files to the html",
"main": "dist/plugin.js",
"scripts": {
"test": "mocha -r ts-node/register spec/**/*.spec.ts --exit",
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"html-webpack-plugin",
"exclude-assets",
"assets",
"polyfills",
"webpack",
"plugin"
],
"author": "swimmadude66",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@types/node": "13.13.4",
"chai": "4.2.0",
"css-loader": "5.0.1",
"html-webpack-plugin": ">=3.2.0",
"mini-css-extract-plugin": "1.3.5",
"mocha": "8.2.1",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"typescript": "4.1.3",
"webpack": ">=3.0.0"
},
"dependencies": {
"minimatch": "3.0.4"
},
"peerDependencies": {
"html-webpack-plugin": ">=3.0.0",
"webpack": ">=3.0.0"
}
}
{
"name": "html-webpack-skip-assets-plugin",
"version": "1.0.3",
"description": "a plugin for html-webpack-plugin to skip adding certain output files to the html",
"repository": {
"type": "git",
"url": "git+https://github.com/swimmadude66/html-webpack-skip-assets-plugin.git"
},
"bugs": {
"url": "https://github.com/swimmadude66/html-webpack-skip-assets-plugin/issues"
},
"homepage": "https://github.com/swimmadude66/html-webpack-skip-assets-plugin#readme",
"main": "dist/plugin.js",
"scripts": {
"test": "mocha -r ts-node/register spec/**/*.spec.ts --exit",
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"html-webpack-plugin",
"exclude-assets",
"assets",
"polyfills",
"webpack",
"plugin"
],
"author": "swimmadude66",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@types/node": "13.13.4",
"chai": "4.2.0",
"css-loader": "5.0.1",
"html-webpack-plugin": ">=3.2.0",
"mini-css-extract-plugin": "1.3.5",
"mocha": "8.2.1",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"typescript": "4.1.3",
"webpack": ">=3.0.0"
},
"dependencies": {
"minimatch": "3.0.4"
},
"peerDependencies": {
"html-webpack-plugin": ">=3.0.0",
"webpack": ">=3.0.0"
}
}

0 comments on commit bf81728

Please sign in to comment.