UNPKG

react-static-webpack-plugin

Version:

Build full static sites using React, React Router and Webpack

59 lines (58 loc) 1.55 kB
{ "name": "react-static-webpack-plugin", "version": "0.1.1", "description": "Build full static sites using React, React Router and Webpack", "license": "MIT", "repository": "iansinnott/react-static-webpack-plugin", "main": "dist/index.js", "author": { "name": "Ian Sinnott", "email": "ian@iansinnott.com", "url": "iansinnott.com" }, "engines": { "node": ">=4.2.0" }, "scripts": { "test": "eslint src && npm run build && ava", "watch": "babel -w -d dist src", "clean": "rimraf dist", "build": "mkdir -p dist && npm run clean && babel -d dist src", "bump:patch": "npm version patch -m \"v%s\"", "bump:minor": "npm version minor -m \"v%s\"", "bump": "npm run bump:patch", "preversion": "npm test", "postversion": "git push && git push --tags", "prepublish": "npm run build" }, "keywords": [ "react", "react-router", "webpack", "static", "generator" ], "dependencies": { "async": "^1.5.1", "eval": "^0.1.1", "history": "^1.17.0", "lodash": "^3.10.1", "debug": "^2.2.0", "react": "^0.14.5", "react-dom": "^0.14.5", "react-router": "^1.0.3" }, "devDependencies": { "ava": "^0.9.1", "babel": "^6.3.26", "babel-cli": "^6.3.17", "babel-eslint": "^4.1.6", "babel-preset-es2015": "^6.3.13", "babel-preset-react": "^6.3.13", "babel-preset-stage-0": "^6.3.13", "eslint": "^1.10.3", "eslint-config-airbnb": "^2.1.1", "eslint-plugin-react": "^3.13.1", "rimraf": "^2.5.0" } }