redux-bluetooth/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2017-07-11 10:01:36 +08:00
{
"name": "redux-bluetooth",
2017-07-11 20:41:26 +08:00
"version": "0.1.0",
2017-07-11 10:01:36 +08:00
"description": "Redux middleware to dispatch actions via bluetooth to a peripheral store",
"main": "build/index.js",
"scripts": {
"dev": "watch 'npm run build' src",
2017-07-11 11:14:39 +08:00
"eslint": "eslint src",
"prebuild": "npm run eslint",
2017-07-11 10:01:36 +08:00
"build": "babel src -d build",
2017-07-11 20:48:28 +08:00
"test": "jest --config .jest.json",
2017-07-11 10:01:36 +08:00
"test:watch": "npm test -- --watch",
"prepublish": "npm run build",
"release": "np"
},
"babel": {
"presets": [
"latest"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jvallelunga/redux-bluetooth.git"
},
"keywords": [
"redux",
"middleware",
"bluetooth",
"iot",
"bleno",
"peripheral",
"web-bluetooth",
"central"
],
"author": "Jeronimo Vallelunga",
"license": "ISC",
"bugs": {
"url": "https://github.com/jvallelunga/redux-bluetooth/issues"
},
"homepage": "https://github.com/jvallelunga/redux-bluetooth#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-latest": "^6.24.1",
2017-07-11 11:14:39 +08:00
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
2017-07-11 10:01:36 +08:00
"jest": "^20.0.4",
"np": "^2.16.0",
"watch": "^1.0.2"
},
"dependencies": {
"bleno": "^0.4.2",
2017-07-11 11:14:39 +08:00
"redux": "^3.7.1",
"redux-thunk": "^2.2.0",
2017-07-11 10:01:36 +08:00
"text-encoding": "^0.6.4"
}
}