webpack-isomorphic-compiler
Version:
A compiler that makes your life easier if you are building isomorphic webpack powered apps, that is, single page applications with server-side rendering
87 lines (86 loc) • 2.14 kB
JSON
{
"name": "webpack-isomorphic-compiler",
"version": "3.1.1",
"description": "A compiler that makes your life easier if you are building isomorphic webpack powered apps, that is, single page applications with server-side rendering",
"keywords": [
"webpack",
"isomorphic",
"server-side",
"rendering",
"render",
"compiler",
"compilation"
],
"author": "André Cruz <andre@moxy.studio>",
"license": "MIT",
"bugs": "https://github.com/moxystudio/webpack-isomorphic-compiler/issues",
"homepage": "https://github.com/moxystudio/webpack-isomorphic-compiler",
"repository": {
"type": "git",
"url": "git@github.com:moxystudio/webpack-isomorphic-compiler"
},
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest --env node --coverage",
"posttest": "rimraf test/tmp",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"standard-version": {
"scripts": {
"posttag": "git push --follow-tags origin master && npm publish"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"webpack": ">=2.0.0 <5.0.0"
},
"dependencies": {
"lodash.wrap": "^4.1.1",
"p-defer": "^1.0.0",
"p-settle": "^2.0.0",
"webpack-sane-compiler": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^6.0.1",
"@commitlint/config-conventional": "^6.0.2",
"delay": "^2.0.0",
"eslint": "^4.0.0",
"eslint-config-moxy": "^5.0.0",
"husky": "^0.14.0",
"jest": "^22.0.0",
"lint-staged": "^7.0.0",
"lodash.escaperegexp": "^4.1.2",
"p-try": "^1.0.0",
"pify": "^3.0.0",
"rimraf": "^2.6.1",
"standard-version": "^4.2.0",
"strip-ansi": "^4.0.0",
"webpack": "^4.1.0"
},
"jest": {
"modulePathIgnorePatterns": [
"test/tmp/",
"test/configs/"
],
"coveragePathIgnorePatterns": [
"test/"
]
}
}