-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 1.93 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "panic-tycoon",
"version": "2.0.1",
"description": "A game based on software engineering for the Trinity College Dublin 4th year CS4098 Programming Group Project module.",
"main": "index.js",
"engines": {
"node": ">=0.9.9"
},
"scripts": {
"test": "node ./test.js",
"start": "node ./index.js"
},
"repository": {
"type": "git",
"url": "https://www.github.com/Panic-Tycoons/panic-tycoon"
},
"keywords": [
"coursework",
"software-engineering",
"game"
],
"author": "Miles McGuire, Tom Mason, Kevin Farrell, Ross McKinley",
"license": "none",
"bugs": {
"url": "https://github.com/Panic-Tycoons/panic-tycoon/issues"
},
"homepage": "https://github.com/Panic-Tycoons/panic-tycoon",
"dependencies": {
"nconf": "~0.6.9",
"bit-array": "~0.2.2",
"browserify": "~3.28.1",
"lessify": "~0.3.0",
"uglifyify": "~1.2.2",
"browserify-shim": "~3.2.2",
"jquery": "~1.11.0",
"deepcopy": "^0.3.3"
},
"devDependencies": {
"tape": "~2.4.0"
},
"browserify": {
"transform": [
"browserify-shim",
"uglifyify",
"lessify"
]
},
"browser": {
"jvm": "./lib/jquery-jvectormap-1.2.2.min.js"
},
"browserify-shim": {
"jvm": {
"exports": "jvm",
"depends": [
"jquery:jQuery"
]
}
},
"testling": {
"files": [
"tests/browser/test-maps-loading.js",
"tests/browser/test-charts-loading.js",
"tests/browser/test-teamPicker.js",
"tests/browser/test-sidebar.js",
"tests/browser/test-modal.js",
"tests/browser/test-audio.js",
"tests/browser/test-app.js"
],
"browsers": [
"ie/6..latest",
"chrome/15..latest",
"chrome/canary",
"firefox/10..latest",
"firefox/nightly",
"safari/4.0..latest",
"opera/10.0..latest",
"opera/next",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
]
}
}