-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
60 lines (60 loc) · 1.4 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
{
"version": "0.1.0",
"name": "jemul8",
"publishConfig": {
"proprietary-attribs": false
},
"description": "An object-oriented JavaScript x86 Emulator",
"keywords": [
"emulator",
"x86",
"intel",
"amd"
],
"config": {
"publishtest": false
},
"homepage": "http://jemul8.com/",
"author": "Daniel Phillimore <[email protected]> (http://ovms.co)",
"repository": {
"type": "git",
"url": "https://github.com/asmblah/jemul8"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/asmblah/jemul8/issues"
},
"main": "index",
"bin": {
"jemul8": "bin/jemul8",
"jemul8-server": "bin/server"
},
"scripts": {
"test": "node tests/bdd/index.js",
"webtest": "node tests/bdd/webtest.js"
},
"dependencies": {
"modular-amd": "0.1.x",
"node-getopt": "0.2.x",
"ws": "0.4.*"
},
"devDependencies": {
"chai": "1.7.x",
"express": "3.2.x",
"mocha": "^3.5.0",
"setimmediate": "^1.0.5",
"sinon": "^3.2.0",
"sinon-chai": "2.4.x",
"tmp": "0.0.33"
},
"engines": {
"node": ">=0.6",
"npm": "1"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/asmblah/jemul8/raw/master/MIT-LICENSE.txt"
}
]
}