-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.65 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
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
{
"name" : "Kalulu",
"version" : "2.0.0",
"description" : "A game to learn how to read, write and count.",
"main" : "www/index.html",
"repository": {
"type" : "git",
"url" : "https://dev.kalulu-education.org/cyprien/kalulu-the-gathering.git"
},
"scripts": {
"rewards" : "node npm_scripts/compute_rewards_spots.js",
"ui" : "node npm_scripts/compute_ui_types.js",
"build" : "node npm_scripts/build.js",
"buildEnglish" : "node npm_scripts/build.js",
"buildSwahili" : "node npm_scripts/build.js",
"buildProdEnglish" : "node npm_scripts/build.js",
"buildProdSwahili" : "node npm_scripts/build.js",
"buildFrench" : "node npm_scripts/build.js",
"stats" : "node npm_scripts/stats.js",
"testAll" : "node npm_scripts/test_all.js",
"testAllEnglish" : "node npm_scripts/test_all.js",
"testAllSwahili" : "node npm_scripts/test_all.js",
"testAllFrench" : "node npm_scripts/test_all.js",
"testMinigames" : "node npm_scripts/test_game.js",
"testMinigamesEnglish" : "node npm_scripts/test_game.js",
"testMinigamesSwahili" : "node npm_scripts/test_game.js",
"serve" : "node npm_scripts/serve.js"
},
"keywords": [
"manzalab",
"serious game",
"game",
"X-PRIZE",
"Global Learning",
"Global Learning Challenge",
"learning"
],
"author": "Cyprien Larrouy <[email protected]> (https://fr.linkedin.com/in/cyprienlarrouy)",
"contributors": [
"Cyprien Larrouy <[email protected]> (https://www.linkedin.com/in/cyprienlarrouy)",
"Olivier Dehaene <[email protected]> ()",
"Tom Wersinger <[email protected]> (http://tom-wersinger.com/)",
"Adrien Carta <[email protected]> (https://www.linkedin.com/in/herzucco)",
"Alexis Meleard <> ()",
"Arnaud Charel <> ()"
],
"license": "Apache-2.0",
"devDependencies": {
"clean-webpack-plugin" : "^0.1.14",
"copy-webpack-plugin" : "^4.0.1",
"d3-dsv" : "^1.0.3",
"dsv-loader" : "^1.1.0",
"express" : "^4.14.0",
"html-webpack-plugin" : "^2.24.1",
"webpack" : "^1.14.0",
"webpack-dev-server" : "^1.16.2",
"webpack-merge" : "^1.1.1",
"webpack-validator" : "^2.3.0"
},
"dependencies": {
"dat-gui" : "^0.5.0",
"eventemitter3" : "^2.0.2",
"howler" : "^2.0.2",
"json-loader" : "^0.5.4",
"micro-events" : "^1.0.0",
"pdfjs-dist" : "^1.6.414",
"underscore" : "^1.8.3",
"victor" : "^1.1.0"
}
}