-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 765 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 765 Bytes
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
{
"name": "whereami.js",
"version": "2.0.0",
"description": "Node.js module to predict indoor location using machine learning and wifi information.",
"main": "server.js",
"bin": {
"whereamijs": "./server.js"
},
"scripts": {
"start": "webpack serve"
},
"author": "Charlie Gerard <charlie.a.gerard@gmail.com> (https://charliegerard.dev)",
"homepage": "https://github.com/charliegerard/whereami.js#readme",
"license": "GNU",
"dependencies": {
"loading-cli": "^1.1.0",
"node-wifi": "^2.0.14",
"random-forest-classifier": "^0.6.0",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0"
},
"devDependencies": {
"webpack-dev-server": "^3.11.2"
},
"keywords": [
"nodejs",
"machine learning",
"wifi"
]
}