Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
matthewbauer
GitHub Repository: matthewbauer/gametime-player
Path: blob/master/package.json
1044 views
1
{
2
"name": "gpemu",
3
"version": "1.0.8",
4
"description": "A video game emulator supporting NES, SNES, Gameboy, and Gameboy Advance ROMs. Works best with external gamepad.",
5
"author": "Matthew Bauer <[email protected]>",
6
"repository": {
7
"type": "git",
8
"url": "https://github.com/matthewbauer/gametime-player.git"
9
},
10
"jspm": {
11
"dependencies": {
12
"coffee": "github:forresto/system-coffee@master",
13
"document": "github:matthewbauer/document@^0.0.4",
14
"gambatte": "npm:gambatte@^1.0.0",
15
"gw": "npm:gw@^1.0.0",
16
"json": "github:systemjs/plugin-json@^0.1.0",
17
"jszip": "github:stuk/jszip@^2.5.0",
18
"localforage": "npm:localforage@^1.2.10",
19
"nestopia": "npm:nestopia@^1.0.0",
20
"picodrive": "npm:picodrive@^1.0.0",
21
"quicknes": "npm:[email protected]",
22
"raw": "github:matthewbauer/plugin-raw@^0.3.1",
23
"snes9x-next": "npm:snes9x-next@^1.0.0",
24
"sparkmd5": "github:satazor/js-spark-md5@^1.0.0",
25
"vba-next": "npm:vba-next@^1.0.0",
26
"vecx": "npm:vecx@^1.0.0",
27
"window": "github:matthewbauer/window@^0.0.3",
28
"x-retro": "github:matthewbauer/x-retro@master"
29
},
30
"devDependencies": {
31
"babel": "npm:babel-core@^5.8.24",
32
"babel-runtime": "npm:babel-runtime@^5.8.24",
33
"core-js": "npm:core-js@^1.1.4",
34
"traceur": "github:jmcriffey/[email protected]",
35
"traceur-runtime": "github:jmcriffey/[email protected]"
36
},
37
"overrides": {
38
"github:mohayonao/[email protected]": {
39
"main": "build/web-audio-api-shim.js",
40
"format": "global"
41
},
42
"github:stuk/[email protected]": {
43
"main": "dist/jszip.js"
44
},
45
"github:webcomponents/[email protected]": {
46
"main": "webcomponents-lite.js"
47
}
48
}
49
},
50
"devDependencies": {
51
"ava": "^0.21.0",
52
"chai": "^4.1.0",
53
"chai-as-promised": "^7.1.1",
54
"coffee-script": "^1.9.3",
55
"http-server": "^0.10.0",
56
"ini": "^1.3.4",
57
"jspm": "^0.16.11",
58
"lodash": "^4.17.4",
59
"mocha": "^3.4.2",
60
"opn-cli": "^3.1.0",
61
"systemjs-builder": "^0.16.9",
62
"wd": "^1.4.0"
63
},
64
"scripts": {
65
"start": "http-server && opn localhost:8080",
66
"install": "jspm install -y",
67
"test": "npm run build && ava",
68
"build": "jspm bundle index.coffee!"
69
}
70
}
71
72