forked from NetsBlox/NetsBlox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.88 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.88 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "netsblox",
"version": "1.12.1",
"description": "Visual programming environment with networking support",
"bin": {
"netsblox": "./bin/netsblox"
},
"scripts": {
"start": "node bin/netsblox-start.js",
"dev": "npx nodemon --ignore src/browser/dist -w src -w test --exec 'npm run postinstall && npm start'",
"testmon": "npx nodemon -w src -w test --exec 'npm run test'",
"test-quick": "MONGO_URI=mongodb://127.0.0.1:27017/netsblox-tests ENV=test npx mocha --recursive test/unit/server test/unit/client/serialization.spec.js test/features",
"test-client": "node test/unit/client/integration.js",
"test": "MONGO_URI=mongodb://127.0.0.1:27017/netsblox-tests ENV=test istanbul --hook-run-in-context cover node_modules/mocha/bin/_mocha -- --timeout 5000 --recursive test/unit/server test/unit/client/serialization.spec.js test/features",
"postinstall": "node bin/build.js",
"docker": "docker run -it -p 8080:8080 --env-file .env -e MONGO_URI='mongodb://172.17.0.1:27017/netsblox' -v $PWD:/netsblox netsblox/base bash"
},
"engines": {
"node": ">= 8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NetsBlox/NetsBlox.git"
},
"author": "Brian Broll",
"license": "ISC",
"bugs": {
"url": "https://github.com/NetsBlox/NetsBlox/issues"
},
"homepage": "https://github.com/NetsBlox/NetsBlox",
"dependencies": {
"async": "^2.0.0-rc.2",
"aws-sdk": "^2.203.0",
"body-parser": "^1.12.4",
"cache-manager": "^2.0.0",
"cache-manager-fs": "^1.0.6",
"chalk": "^1.1.1",
"commander": "^2.9.0",
"concat": "^2.0.0",
"cookie-parser": "^1.3.5",
"debug": "^2.1.3",
"doctrine": "^2.0.0",
"dot": "^1.1.1",
"dotenv": "^6.0.0",
"epipebomb": "^1.0.0",
"exists-file": "^3.0.1",
"express": "^4.12.3",
"fast-csv": "^2.4.0",
"fs-extra": "^7.0.0",
"geolib": "^2.0.18",
"gnuplot": "^0.3.1",
"google-trends-api": "^3.0.1",
"jade": "^1.9.2",
"jimp": "^0.2.28",
"json-query": "^2.2.2",
"jsonwebtoken": "^7.2.1",
"just.randomstring": "^0.1.1",
"lodash": "^4.8.2",
"moment": "^2.18.1",
"mongodb": "^3.0.5",
"moviedb": "^0.2.7",
"node-geocoder": "^3.16.0",
"node-schedule": "^1.2.4",
"nodemailer": "=2.6.4",
"nop": "^1.0.0",
"progress": "^2.0.0",
"q": "^1.4.1",
"qs": "^6.5.0",
"ramda": "^0.23.0",
"request": "^2.63.0",
"request-promise": "^4.2.1",
"rimraf": "^2.4.3",
"snap2js": "^1.3.0",
"sphericalmercator": "^1.0.5",
"temp-units-conv": "^0.1.1",
"turf": "^3.0.14",
"urlencode": "^1.1.0",
"vantage": "^1.5.1",
"vantage-repl": "^1.1.4",
"ws": "^5.1.0"
},
"devDependencies": {
"axios": "^0.18.0",
"expect": "^1.6.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nodemon": "^1.3.7",
"supertest": "^3.0.0",
"uglify-js": "^3.3.17",
"xmlhttprequest": "^1.8.0"
}
}