dfu-js
Version:
a web bluetooth library for performing DFU of Nordic Semiconductor SOCs. Includes Vue.js Mixin for simplifed use.
65 lines (64 loc) • 1.72 kB
JSON
{
"name": "dfu-js",
"version": "0.2.1",
"description": "a web bluetooth library for performing DFU of Nordic Semiconductor SOCs. Includes Vue.js Mixin for simplifed use.",
"main": "./dist/cjs.bundle.js",
"module": "./dist/esm.bundle.js",
"files": [
"/dist"
],
"private": false,
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chance": "^1.0.18",
"eslint": "^6.2.2",
"factory-girl": "^5.0.4",
"mocha": "^6.2.0",
"rollup": "^1.20.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"sinon": "^7.4.1"
},
"scripts": {
"lint": "eslint src tests/unit",
"build": "rollup -c rollup.config.js",
"prepublish": "npm run build",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha --require mocha-babel-register.js tests/unit/**/*spec.js --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MonsieurDahlstrom/dfu-js.git"
},
"keywords": [
"web",
"bluetooth",
"DFU",
"nRF5",
"Nordic",
"Semiconductor",
"nrf51",
"nrf52"
],
"author": "Mathias Dahlstrom",
"bugs": {
"url": "https://github.com/MonsieurDahlstrom/dfu-js/issues"
},
"homepage": "https://github.com/MonsieurDahlstrom/dfu-js#readme",
"dependencies": {
"@babel/runtime": "^7.5.5",
"async": "^3.1.0",
"buffer": "^5.4.0",
"crc": "^3.8.0",
"events": "^3.0.0",
"jszip": "^3.2.2"
}
}