redux-bluetooth/package.json

88 lines
2.7 KiB
JSON
Raw Normal View History

2017-07-11 10:01:36 +08:00
{
"name": "redux-bluetooth",
2017-07-15 07:16:25 +08:00
"version": "0.1.2",
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-15 07:01:15 +08:00
"test": "jest --config .jest.json",
"pretest:bundlesize": "npm run build",
"test:bundlesize": "bundlesize",
2017-07-11 10:01:36 +08:00
"test:watch": "npm test -- --watch",
2017-07-13 12:30:39 +08:00
"test:coverage": "npm test -- --coverage",
2017-07-11 10:01:36 +08:00
"prepublish": "npm run build",
2017-07-15 07:11:08 +08:00
"release": "np --no-yarn",
2017-07-13 09:30:57 +08:00
"preexample:install": "npm run example:peripheral:install",
"example:install": "npm run example:webapp:install",
2017-07-13 09:22:38 +08:00
"example:start": "npm run example:peripheral:start",
2017-07-13 09:17:48 +08:00
"example:deploy": "npm run example:webapp:deploy",
2017-07-13 22:07:29 +08:00
"example:webapp:install": "cd example/webapp && npm install",
"example:webapp:build": "cd example/webapp && npm run build",
"example:webapp:deploy": "cd example/webapp && npm run deploy",
"example:peripheral:install": "cd example/peripheral && npm install",
"example:peripheral:build": "cd example/peripheral && npm run build",
"example:peripheral:start": "cd example/peripheral && npm start",
2017-07-15 07:01:15 +08:00
"test:ci": "jest --config .jest.ci.json",
2017-07-15 07:29:07 +08:00
"pretest:coverage:ci": "npm run test:coverage",
2017-07-15 07:01:15 +08:00
"test:coverage:ci": "codecov -t $CODECOV_TOKEN",
"test:bundlesize:ci": "bundlesize",
"preexample:deploy:ci": "npm run example:webapp:install",
"example:deploy:ci": "npm run example:webapp:build"
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
},
"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",
2017-07-13 12:19:13 +08:00
"babel-jest": "^20.0.3",
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",
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"
},
"bundlesize": [
{
"path": "./build/**.js",
"maxSize": "2 Kb"
}
]
2017-07-11 10:01:36 +08:00
}