-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
70 lines (70 loc) · 2.27 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": "gpemu",
"version": "1.0.8",
"description": "A video game emulator supporting NES, SNES, Gameboy, and Gameboy Advance ROMs. Works best with external gamepad.",
"author": "Matthew Bauer <mjbauer95@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/matthewbauer/gametime-player.git"
},
"jspm": {
"dependencies": {
"coffee": "github:forresto/system-coffee@master",
"document": "github:matthewbauer/document@^0.0.4",
"gambatte": "npm:gambatte@^1.0.0",
"gw": "npm:gw@^1.0.0",
"json": "github:systemjs/plugin-json@^0.1.0",
"jszip": "github:stuk/jszip@^2.5.0",
"localforage": "npm:localforage@^1.2.10",
"nestopia": "npm:nestopia@^1.0.0",
"picodrive": "npm:picodrive@^1.0.0",
"quicknes": "npm:quicknes@1.0.3",
"raw": "github:matthewbauer/plugin-raw@^0.3.1",
"snes9x-next": "npm:snes9x-next@^1.0.0",
"sparkmd5": "github:satazor/js-spark-md5@^1.0.0",
"vba-next": "npm:vba-next@^1.0.0",
"vecx": "npm:vecx@^1.0.0",
"window": "github:matthewbauer/window@^0.0.3",
"x-retro": "github:matthewbauer/x-retro@master"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4",
"traceur": "github:jmcriffey/bower-traceur@0.0.91",
"traceur-runtime": "github:jmcriffey/bower-traceur-runtime@0.0.91"
},
"overrides": {
"github:mohayonao/web-audio-api-shim@0.3.0": {
"main": "build/web-audio-api-shim.js",
"format": "global"
},
"github:stuk/jszip@2.5.0": {
"main": "dist/jszip.js"
},
"github:webcomponents/webcomponentsjs@0.7.10": {
"main": "webcomponents-lite.js"
}
}
},
"devDependencies": {
"ava": "^0.21.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"coffee-script": "^1.9.3",
"http-server": "^0.10.0",
"ini": "^1.3.4",
"jspm": "^0.16.11",
"lodash": "^4.17.4",
"mocha": "^3.4.2",
"opn-cli": "^3.1.0",
"systemjs-builder": "^0.16.9",
"wd": "^1.4.0"
},
"scripts": {
"start": "http-server && opn localhost:8080",
"install": "jspm install -y",
"test": "npm run build && ava",
"build": "jspm bundle index.coffee!"
}
}