-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
75 lines (75 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
{
"name": "kni",
"version": "4.0.1",
"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": "^0.2.0"
},
"devDependencies": {
"eslint": "^2.7.0",
"istanbul": "^0.4.3",
"json-diff": "^0.3.1",
"opn": "^1.0.1"
},
"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": {
"test": "npm ls -s && npm run lint && npm run cover -s",
"lint": "eslint .",
"build": "node kni.js examples/archery.kni -j > examples/archery.json && bundle index.js > bundle.js",
"cover": "istanbul cover --report html --print node -- test.js && istanbul report text && npm run check-cover -s",
"check-cover": "istanbul check-coverage",
"view-cover": "opn ./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"
}