-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
34 lines (34 loc) · 971 Bytes
/
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
{
"name": "primitive-cloud-server",
"version": "2.0.0",
"description": "A primitive Node server for Scratch 3.0 cloud variables; it's not made for large-scale projects and can easily be tricked by those pesky JavaScript programmers",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SheepTester/primitive-cloud-server.git"
},
"keywords": [
"scratch",
"cloud",
"variables",
"server"
],
"author": "SheepTester",
"license": "MIT",
"bugs": {
"url": "https://github.com/SheepTester/primitive-cloud-server/issues"
},
"homepage": "https://github.com/SheepTester/primitive-cloud-server#readme",
"dependencies": {
"colors": "^1.4.0",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"internal-ip": "^6.2.0",
"minimist": "^1.2.5",
"public-ip": "^4.0.4"
}
}