-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
80 lines (80 loc) · 1.74 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
{
"name": "kni",
"version": "4.0.3",
"description": "A text adventure language and runtime inspired by inkle/ink",
"bin": {
"kni": "./kni.js"
},
"dependencies": {
"pop-equals": "^1.0.0",
"shon": "^4.0.0",
"system": "^1.0.6",
"table": "^3.7.8",
"tee": "^0.2.0",
"xorshift": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/eslint-parser": "^7.13.4",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@types/node": "^14.14.31",
"eslint": "^7.20.0",
"nyc": "^15.1.0",
"open": "^7.4.2",
"rimraf": "^3.0.2",
"strip-ansi": "^3.0.1",
"typescript": "^4.2.2"
},
"files": [
"console.js",
"describe.js",
"document.js",
"engine.js",
"evaluate.js",
"excerpt.js",
"grammar.js",
"html.js",
"inline-lexer.js",
"kni.js",
"kni.json",
"link.js",
"outline-lexer.js",
"parser.js",
"path.js",
"readline.js",
"scanner.js",
"scope.js",
"story.js",
"template.js",
"translate-json.js",
"verify.js",
"wrapper.js"
],
"scripts": {
"lint": "eslint . && tsc",
"test": "node -- test.js",
"cover": "nyc npm test",
"check-cover": "nyc check-coverage",
"view-cover": "npm run cover && open ./coverage/index.html",
"usage": "usage2json kni.usage > kni.json"
},
"translators": {
"json": "./translate-json.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kriskowal/kni.git"
},
"keywords": [
"text",
"adventure",
"interactive",
"language"
],
"author": "Kris Kowal <kris@cixar.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kriskowal/kni/issues"
},
"homepage": "https://github.com/kriskowal/kni#readme"
}