node-poweredup/package.json
Nathan Kellenicki 33fb7f4907
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is failing
Fixed drone pipeline again
2019-03-20 15:09:39 -07:00

41 lines
1.6 KiB
JSON

{
"name": "node-poweredup",
"version": "2.0.2",
"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/index-node.d.ts",
"scripts": {
"build:node": "tslint -c tslint.json \"./src/*.ts\" && tsc",
"build:browser": "tslint -c tslint.json \"./src/*.ts\" && webpack --mode=production",
"build:all": "tslint -c tslint.json \"./src/*.ts\" && tsc && webpack --mode=production",
"docs": "jsdoc -d docs -c jsdoc.conf.json -t ./node_modules/ink-docstrap/template -R README.md dist/node/consts.js dist/node/poweredup-node.js dist/node/lpf2hub.js dist/node/wedo2smarthub.js dist/node/boostmovehub.js dist/node/puphub.js dist/node/pupremote.js dist/node/duplotrainbase.js dist/node/hub.js dist/node/consts.js",
"all": "npm run build:all && npm run docs",
"prepublishOnly": "npm run build:node"
},
"author": "Nathan Kellenicki <nathan@kellenicki.com>",
"license": "MIT",
"dependencies": {
"debug": "^4.1.1",
"noble": "1.9.1",
"noble-mac": "git+https://github.com/Timeular/noble-mac.git#af4418e"
},
"devDependencies": {
"@types/debug": "0.0.31",
"@types/noble": "0.0.38",
"@types/node": "^10.12.21",
"@types/web-bluetooth": "0.0.4",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"webpack": "^4.29.2",
"webpack-cli": "^3.2.3"
},
"resolutions": {
"xpc-connection": "sandeepmistry/node-xpc-connection#pull/26/head"
}
}