reacthtmlpack
Version:
Added the missing piece of treating `index.html` as entry point in webpack bundles.
84 lines (83 loc) • 2.18 kB
JSON
{
"name": "reacthtmlpack",
"version": "1.2.1",
"description": "Added the missing piece of treating `index.html` as entry point in webpack bundles.",
"main": "lib/index.js",
"bin": {
"reacthtmlpack": "bin/index.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": "babel src --out-dir lib",
"lint": "eslint bin src",
"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": "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": "^5.8.21",
"babel-core": "^5.8.22",
"babel-eslint": "^4.1.0",
"codeclimate-test-reporter": "^0.1.0",
"eslint": "^1.2.1",
"eslint-plugin-react": "^3.2.3",
"expect": "^1.12.0",
"isparta": "^3.0.3",
"istanbul": "^0.3.18",
"mocha": "^2.2.5",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"rimraf": "^2.4.3",
"tomchentw-npm-dev": "^3.0.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
},
"dependencies": {
"commander": "^2.8.1",
"eval-as-module": "^0.1.1",
"fbjs": "^0.3.1",
"glob": "^5.0.14",
"glob2base": "0.0.12",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"rx": "^4.0.0"
},
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
}
}