-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.67 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.67 KB
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
{
"name": "kni",
"version": "5.1.0",
"description": "A text adventure language and runtime inspired by inkle/ink",
"type": "module",
"bin": {
"kni": "./cli.cjs"
},
"dependencies": {
"pop-equals": "^1.0.0",
"shon": "^4.0.0",
"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",
"@babel/plugin-syntax-import-attributes": "^7.27.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/node": "^14.14.31",
"eslint": "^7.20.0",
"nyc": "^15.1.0",
"open": "^7.4.2",
"prettier": "^3.7.1",
"rimraf": "^3.0.2",
"rollup": "^4.53.3",
"strip-ansi": "^3.0.1",
"typescript": "^4.2.2"
},
"files": [
"*.js",
"!*-test.js",
"*.json",
"!.*.json"
],
"scripts": {
"format": "prettier --write \"**/*.js\"",
"format:check": "prettier --check \"**/*.js\"",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"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"
}