metalsmith-react
Version:
Metalsmith plugin to use React as a template engine
63 lines (62 loc) • 1.4 kB
JSON
{
"name": "metalsmith-react",
"version": "2.0.2",
"description": "Metalsmith plugin to use React as a template engine",
"keywords": [
"metalsmith",
"metalsmith-plugin"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/MoOx/metalsmith-react.git",
"main": "dist/index.js",
"files": [
"dist",
"src",
"!**/__tests__"
],
"dependencies": {
"async": "^0.9.0",
"multimatch": "^2.0.0",
"react": "^0.14.6",
"react-dom": "^0.14.6"
},
"devDependencies": {
"ava": "^0.10.0",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-i-am-meticulous": "^1.0.0",
"github-release-from-changelog": "^1.1.1",
"metalsmith": "^1.7.0",
"npmpub": "^3.0.0"
},
"scripts": {
"lint": "eslint .",
"tests": "ava '**/__tests__/*.js'",
"test": "npm run lint && npm run tests",
"prepublish": "babel --ignore __tests__ src --out-dir dist",
"release": "npmpub"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-1"
]
},
"eslintConfig": {
"extends": [
"eslint-config-i-am-meticulous"
]
},
"ava": {
"require": [
"babel-core/register"
]
}
}