-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
43 lines (43 loc) · 993 Bytes
/
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
{
"name": "ifvms",
"title": "ifvms.js",
"version": "1.1.6",
"description": "The Interactive Fiction Virtual Machines Suite - in Javascript",
"author": "Dannii Willis <[email protected]>",
"license": "MIT",
"keywords": [
"emulator",
"interactive fiction",
"interactive-fiction"
],
"engines": {
"node": ">=6.0.0"
},
"main": "src/index.js",
"bin": {
"zvm": "bin/zvm.js"
},
"files": [
"CONTRIBUTORS",
"**/*.css",
"**/*.js"
],
"repository": "curiousdannii/ifvms.js",
"homepage": "https://github.com/curiousdannii/ifvms.js",
"bugs": "https://github.com/curiousdannii/ifvms.js/issues",
"dependencies": {
"glkote-term": "^0.4.0",
"mute-stream": "0.0.8",
"yargs": "^15.0.1"
},
"devDependencies": {
"babili": "^0.1.2",
"browserify": "^16.0.0",
"eslint": "^6.0.0"
},
"scripts": {
"build": "make dist/zvm.min.js",
"lint": "eslint --ignore-path .gitignore .",
"test": "make test"
}
}