react-sync-state
Version:
A client side implementation for synchronizing states with server
57 lines (56 loc) • 1.57 kB
JSON
{
"name": "react-sync-state",
"version": "0.1.4",
"description": "A client side implementation for synchronizing states with server",
"main": "lib/index.js",
"files": [
"*.md",
"lib"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-cjs",
"build-cjs": "babel --presets es2015,react,stage-0 ./src -d lib",
"build-umd": "NODE_ENV=production webpack src/index.js dist/react-sync-state.js",
"build-min": "NODE_ENV=production webpack -p src/index.js dist/react-sync-state.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sharingapples/sync-state-react.git"
},
"keywords": [
"react",
"sync-state"
],
"author": "Ranjan Shrestha",
"license": "MIT",
"bugs": {
"url": "https://github.com/sharingapples/sync-state-react/issues"
},
"homepage": "https://github.com/sharingapples/sync-state-react#readme",
"devDependencies": {
"babel-core": "^6.3.2",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"expect": "^1.13.0",
"fs": "0.0.2",
"json-loader": "^0.5.4",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.1",
"karma-mocha": "^0.2.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"webpack": "^1.12.9"
},
"dependencies": {
"react": "^0.14.3",
"react-dom": "^0.14.3"
}
}