UNPKG

mach-react

Version:
91 lines (90 loc) 2.53 kB
{ "name": "mach-react", "main": "./lib/index", "version": "0.3.3", "keywords": [ "dangerous", "dom", "fast", "framework", "light", "mach", "micro", "moch", "react", "simple", "tiny", "ui", "view", "virtual" ], "description": "Fast, and tiny react implementation.", "homepage": "https://github.com/rolandpoulter/mach-react", "contributors": [ { "name": "Roland Poulter" } ], "bugs": { "url": "https://github.com/rolandpoulter/mach-react/issues", "email": "matt@mattesch.info" }, "repository": "git://github.com/rolandpoulter/mach-react.git", "author": "Roland Poulter", "license": "ISC", "engines": { "node": ">= 0.10", "npm": ">= 2.1" }, "dependencies": { "virtual-dom": "^2.1.1" }, "devDependencies": { "babel": "^5.8.21", "babel-core": "^5.8.22", "babel-eslint": "^4.0.5", "babel-loader": "^5.3.2", "chai": "^3.2.0", "chai-spies": "^0.7.0", "eslint": "^1.1.0", "eslint-plugin-react": "^3.2.1", "express": "^4.13.3", "gulp": "^3.9.0", "gulp-eslint": "^1.0.0", "gulp-rename": "^1.2.2", "gulp-uglify": "^1.2.0", "isparta": "^3.1.0", "isparta-loader": "^1.0.0", "karma": "^0.13.9", "karma-chrome-launcher": "^0.2.0", "karma-coverage": "^0.5.2", "karma-coveralls": "^1.1.2", "karma-firefox-launcher": "^0.1.6", "karma-mocha": "^0.2.0", "karma-webpack": "^1.7.0", "mocha": "^2.2.5", "react": "^0.14.0", "webpack": "^1.11.0", "webpack-dev-middleware": "^1.2.0" }, "peerDependencies": {}, "scripts": { "build": "babel ./src --out-dir ./lib", "dist": "webpack ./", "gzip": "gzip ./dist/mach-react.min.js", "lint": "gulp eslint", "prebuild": "rm -rf lib && mkdir lib", "predist": "rm -rf dist && mkdir dist", "pregzip": "npm run uglify", "prepublish": "npm run build && npm run dist && npm run gzip", "release-major": "git checkout master && npm version major && git push origin master --tags && npm publish", "release-minor": "git checkout master && npm version minor && git push origin master --tags && npm publish", "release-patch": "git checkout master && npm version patch && git push origin master --tags && npm publish", "release": "npm run release-patch", "start": "node ./benchmark/server", "spec": "node ./spec/server", "test": "karma start", "test-ci": "karma start ./karma.ci.conf.js", "uglify": "gulp uglify" } }