redux-bluetooth/package.json

75 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2017-07-11 10:01:36 +08:00
{
"name": "redux-bluetooth",
2018-02-04 06:53:08 +08:00
"version": "0.1.22",
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-25 10:48:36 +08:00
"lint": "eslint src",
2017-07-11 10:01:36 +08:00
"build": "babel src -d build",
2017-07-25 10:48:36 +08:00
"prebuild": "npm run lint",
"test": "jest --config .jest.json",
2017-07-11 10:01:36 +08:00
"test:watch": "npm test -- --watch",
2017-07-17 03:27:55 +08:00
"test:coverage": "npm test -- --coverage",
2019-03-31 20:10:53 +08:00
"test:coverage:codecov": "npm run test -- --coverage && codecov -t $CODECOV_TOKEN",
2017-07-11 10:01:36 +08:00
"prepublish": "npm run build",
2017-07-15 12:06:26 +08:00
"release": "np",
2017-07-25 10:48:36 +08:00
"example:install": "npm run example:peripheral:install && npm run example:webapp:install",
2017-07-27 07:58:57 +08:00
"example:webapp:install": "cd example/webapp && npm install",
"example:webapp:start": "cd example/webapp && npm run start",
2017-07-13 22:07:29 +08:00
"example:webapp:deploy": "cd example/webapp && npm run deploy",
2017-07-27 07:58:57 +08:00
"example:peripheral:install": "cd example/peripheral && npm install",
2019-03-31 20:10:53 +08:00
"example:peripheral:start": "cd example/peripheral && npm start"
2017-07-11 10:01:36 +08:00
},
"babel": {
2017-07-15 07:29:07 +08:00
"presets": [
"latest"
]
2017-07-11 10:01:36 +08:00
},
2017-07-15 12:00:41 +08:00
"repository": "git+ssh://git@github.com/jvallelunga/redux-bluetooth.git",
2017-07-11 10:01:36 +08:00
"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-jest": "23.6.0",
"babel-loader": "^8.0.5",
2017-07-11 10:01:36 +08:00
"babel-preset-latest": "^6.24.1",
2017-07-15 07:29:07 +08:00
"bundlesize": "^0.11.2",
2017-07-13 11:17:34 +08:00
"codecov": "^2.2.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^23.6.0",
2017-07-11 10:01:36 +08:00
"np": "^2.16.0",
2019-03-31 19:49:38 +08:00
"watch": "^1.0.2"
2017-07-11 10:01:36 +08:00
},
"dependencies": {
"babel-jest": "^24.5.0",
2017-07-11 10:01:36 +08:00
"bleno": "^0.4.2",
2017-07-11 11:14:39 +08:00
"redux": "^3.7.1",
2017-07-11 10:01:36 +08:00
"text-encoding": "^0.6.4"
},
"bundlesize": [
{
2017-07-27 07:25:02 +08:00
"path": "dist/redux-bluetooth.webapp.js",
2017-07-27 08:17:46 +08:00
"maxSize": "10 Kb"
}
]
2017-07-11 10:01:36 +08:00
}