UNPKG

@hodgef/js-library-boilerplate-basic

Version:
59 lines (58 loc) 1.84 kB
{ "name": "@hodgef/js-library-boilerplate-basic", "version": "1.6.389", "description": "Javascript Minimal Starter Kit for building libraries", "main": "build/index.js", "scripts": { "start": "webpack serve --config webpack.config.demo.js", "build": "webpack", "build:demo": "webpack --config webpack.config.demo.js", "test": "jest", "prepare": "npm run build", "trypublish": "npm publish || true" }, "repository": { "type": "git", "url": "https://github.com/hodgef/js-library-boilerplate-basic" }, "author": "Francisco Hodge <hello@franciscohodge.com> (https://github.com/hodgef)", "license": "MIT", "bugs": { "url": "https://github.com/hodgef/js-library-boilerplate-basic/issues" }, "homepage": "https://github.com/hodgef/js-library-boilerplate-basic", "keywords": [ "library", "starter", "es6" ], "devDependencies": { "@babel/cli": "^7.28.0", "@babel/core": "^7.27.7", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/polyfill": "^7.12.1", "@babel/preset-env": "^7.28.0", "babel-eslint": "^10.1.0", "babel-loader": "^10.0.0", "babel-preset-minify": "^0.5.2", "css-loader": "^7.1.2", "css-minimizer-webpack-plugin": "^7.0.2", "eslint": "^9.33.0", "file-loader": "^6.2.0", "html-webpack-plugin": "^5.6.3", "jest": "^30.0.5", "mini-css-extract-plugin": "^2.9.3", "style-loader": "^4.0.0", "terser-webpack-plugin": "^5.3.14", "url-loader": "^4.1.1", "webpack": "^5.101.0", "webpack-cli": "^6.0.1", "webpack-dev-server": "5.2.2" }, "jest": { "moduleNameMapper": { "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js", "\\.(css|less)$": "<rootDir>/scripts/testMock.js" } } }