reacthtmlpack
Version:
Added the missing piece of treating `index.html` as entry point in webpack bundles.
117 lines (116 loc) • 3.56 kB
JSON
{
"name": "reacthtmlpack",
"version": "2.0.1",
"description": "Added the missing piece of treating `index.html` as entry point in webpack bundles.",
"main": "lib/index.js",
"bin": {
"reacthtmlpack": "bin/reacthtmlpack.js"
},
"files": [
"bin/",
"lib/",
"src/",
"CHANGELOG.md"
],
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run lint && npm run clean",
"build:watch": "npm run build -- --watch",
"build": "cross-env NODE_ENV=production BABEL_ENV=production babel src --out-dir lib",
"lint": "cross-env NODE_ENV=test BABEL_ENV=test eslint .",
"pretest:cov": "npm run lint",
"pretest": "npm run lint",
"test:cov": "babel-node ./node_modules/.bin/isparta cover --report lcov _mocha -- $npm_package_config_mocha",
"test:watch": "npm test -- --watch",
"test:fixtures": "cross-env UPDATE_TEST_FIXTURES=true npm test",
"test": "cross-env DEBUG=reacthtmlpack:* NODE_ENV=test BABEL_ENV=test mocha $npm_package_config_mocha"
},
"config": {
"mocha": "--compilers js:babel-register ./src/**/__tests__/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tomchentw/reacthtmlpack"
},
"keywords": [
"react",
"html",
"webpack"
],
"author": {
"name": "tomchentw",
"email": "developer@tomchentw.com",
"url": "https://github.com/tomchentw"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tomchentw/reacthtmlpack/issues"
},
"homepage": "https://tomchentw.github.io/reacthtmlpack/",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^5.0.0-beta6",
"babel-plugin-transform-flow-comments": "^6.4.0",
"babel-plugin-typecheck": "^3.6.1",
"babel-register": "^6.4.3",
"codeclimate-test-reporter": "^0.3.0",
"cross-env": "^1.0.7",
"debug": "^2.2.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-plugin-react": "^3.15.0",
"expect": "^1.13.4",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.4",
"normalize.css": "^3.0.3",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-helmet": "^2.3.1",
"react-redux": "^4.0.6",
"react-router": "^2.0.0-rc5",
"redux": "^3.0.5",
"redux-actions": "^0.9.1",
"redux-thunk": "^1.0.3",
"rimraf": "^2.5.1",
"tomchentw-npm-dev": "^3.3.0"
},
"dependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-regenerator": "^6.4.4",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-syntax-from-presets": "^1.0.0",
"babel-runtime": "^6.3.19",
"babel-types": "^6.4.5",
"cheerio": "^0.19.0",
"chokidar": "^1.4.2",
"commander": "^2.9.0",
"connect": "^3.4.0",
"css-loader": "^0.23.1",
"eval-as-module": "^0.1.2",
"extract-text-webpack-plugin": "^1.0.1",
"global": "^4.3.0",
"invariant": "^2.2.0",
"json-loader": "^0.5.4",
"lodash": "^4.0.0",
"mkdirp": "^0.5.1",
"mz": "^2.1.0",
"object-path": "^0.9.2",
"react-transform-catch-errors": "^1.0.1",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"rx": "^4.0.7",
"serve-static": "^1.10.2",
"style-loader": "^0.13.0",
"temp": "^0.8.3",
"thenify": "^3.1.1",
"webpack": "^1.12.11",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.6.0"
}
}