-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add package info keys to package.json
- Loading branch information
1 parent
805e53c
commit bf81728
Showing
1 changed file
with
51 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |