forked from nathankellenicki/node-poweredup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.2 KB
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
37
38
{
"name": "node-poweredup",
"version": "7.1.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 -c .jsdoc.json",
"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-14",
"compare-versions": "^3.6.0",
"debug": "^4.3.2"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/node": "^16.7.6",
"@types/web-bluetooth": "0.0.11",
"buffer": "^6.0.3",
"jsdoc": "^3.6.7",
"jsdoc-to-markdown": "^7.0.1",
"ts-loader": "^9.2.5",
"tslint": "^6.1.3",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
}
}