string-replace-loader
Version:
Replace loader for Webpack
59 lines (58 loc) • 1.11 kB
JSON
{
"name": "string-replace-loader",
"version": "3.3.0",
"description": "Replace loader for Webpack",
"keywords": [
"webpack",
"loader",
"webpack-loader",
"replace",
"string-replace",
"regex-replace"
],
"scripts": {
"test": "mocha"
},
"main": "index.js",
"dependencies": {
"schema-utils": "^4"
},
"devDependencies": {
"chai": "^5",
"husky": "^9",
"lint-staged": "^15",
"mocha": "^11",
"standard": "^17",
"webpack": "^5"
},
"peerDependencies": {
"webpack": "^5"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/Va1/string-replace-loader.git"
},
"homepage": "https://github.com/Va1/string-replace-loader",
"author": "Valentyn Barmashyn <barmashyn.val@gmail.com>",
"license": "MIT",
"private": false,
"lint-staged": {
"index.js": [
"standard --fix"
],
"lib/**/*.js": [
"standard --fix"
],
"test/**/*.js": [
"standard --fix --env mocha"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}