forked from nathankellenicki/node-poweredup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "node-poweredup",
"version": "6.7.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": "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/**/*.js",
"all": "npm run build:all && npm run docs",
"prepublishOnly": "npm run build:node"
},
"author": "Nathan Kellenicki <[email protected]>",
"license": "MIT",
"dependencies": {
"compare-versions": "^3.6.0",
"debug": "^4.1.1",
"@abandonware/noble": "1.9.2-9"
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/node": "^14.0.13",
"@types/web-bluetooth": "0.0.6",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.4",
"jsdoc-to-markdown": "^6.0.1",
"ts-loader": "^7.0.5",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}