node-poweredup/package.json
Nathan Kellenicki dbe7f1999b
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Updated version with latest PRs
2021-04-05 21:30:51 -07:00

40 lines
1.3 KiB
JSON

{
"name": "node-poweredup",
"version": "6.11.0",
"description": "A Javascript module to interface with LEGO Powered Up components.",
"homepage": "https://github.com/nathankellenicki/node-poweredup/",
"main": "dist/node/index-node.js",
"types": "dist/node/index-node.d.ts",
"scripts": {
"build:node": "tsc",
"build:browser": "webpack --mode=production",
"build:all": "npm run build:node && npm run build:browser",
"lint": "tslint -c tslint.json \"./src/**/*.ts\"",
"build": "npm run lint && npm run build:all",
"docs": "jsdoc -d docs -c jsdoc.conf.json -t ./node_modules/ink-docstrap/template -R README.md dist/node/**/*.js",
"all": "npm run build && npm run docs",
"prepublishOnly": "npm run lint && npm run build:node"
},
"author": "Nathan Kellenicki <nathan@kellenicki.com>",
"license": "MIT",
"dependencies": {
"@abandonware/noble": "1.9.2-13",
"compare-versions": "^3.6.0",
"debug": "^4.3.1"
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/node": "^14.14.37",
"@types/web-bluetooth": "0.0.9",
"buffer": "^6.0.3",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^7.0.1",
"ts-loader": "^8.1.0",
"tslint": "^6.1.3",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
}
}