redux-bluetooth/example/peripheral/package.json

59 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2017-07-11 10:01:36 +08:00
{
"name": "redux-bluetooth-counter-peripheral",
"version": "0.1.0",
"description": "Redux Bluetooth example: Counter peripheral",
"main": "build/index.js",
"scripts": {
"prestart": "npm run build",
"start": "babel-node src/index.js",
2017-07-11 10:01:36 +08:00
"dev": "watch 'npm run build' src",
"prebuild": "cd ../.. && npm run build",
2017-07-11 10:01:36 +08:00
"build": "babel src -d build",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"babel": {
"presets": [
"@babel/preset-env"
2017-07-14 13:02:47 +08:00
],
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
]
2017-07-11 10:01:36 +08:00
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jvallelunga/redux-bluetooth.git"
},
"keywords": [
"redux-bluetooth",
"example",
"counter",
"peripheral"
],
"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": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
2017-07-14 13:02:47 +08:00
"babel-plugin-transform-react-jsx": "^6.24.1",
"nodemon": "^1.18.10"
2017-07-11 10:01:36 +08:00
},
"dependencies": {
2017-07-14 13:02:47 +08:00
"ink": "^0.1.2",
"ink-redux": "^1.0.0",
2017-08-12 22:54:08 +08:00
"prop-types": "^15.5.10",
"redux": "^3.7.1"
2017-07-11 10:01:36 +08:00
}
}