-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
37
{
"name": "scratch-microbit-extension",
"version": "1.0.0",
"description": "BBC micro:bit Scratch extension",
"main": "index.js",
"scripts": {
"start": "node index.js",
"_postinstall": "node ./node_modules/platform-dependent-modules/cli.js && node ./noble-uwp-install.js",
"postinstall": "npm run _postinstall"
},
"author": "João Adriano Freitas",
"email": "[email protected]",
"license": "GPL-2.0",
"dependencies": {
"platform-dependent-modules": "0.0.14",
"socket.io": "^1.3.7",
"bbc-microbit": "^0.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jaafreitas/scratch-microbit-extension.git"
},
"bugs": {
"url": "https://github.com/jaafreitas/scratch-microbit-extension/issues"
},
"homepage": "https://jaafreitas.github.io/scratch-microbit-extension/",
"config": {
"platformDependentModules": {
"linux": [
"bluetooth-hci-socket@^0.5.1"
],
"win32": [
"noble-uwp@^0.5.4"
]
}
}
}