-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
{
"name": "fractive",
"version": "1.3.2",
"description": "Fractive is a hypertext authoring tool, primarily intended for the creation of interactive fiction.",
"keywords": [
"game development",
"gamedev",
"interactive fiction",
"if",
"hypertext"
],
"license": "AGPL-3.0+",
"author": "Josh Sutphin <[email protected]> (http://kickbomb.us)",
"homepage": "https://github.com/invicticide/fractive#readme",
"repository": {
"type": "git",
"url": "https://github.com/invicticide/fractive.git"
},
"bugs": {
"url": "https://github.com/invicticide/fractive/issues"
},
"bin": {
"fractive": "./lib/CLI.js"
},
"main": "lib/Main.js",
"types": "lib/Main.d.ts",
"devDependencies": {
"@types/node": "^8.10.40",
"npm-merge-driver": "^2.3.5",
"typescript": "^2.9.2"
},
"dependencies": {
"ajv": "^5.5.2",
"browserify": "^16.2.3",
"cached-path-relative": ">=1.0.2",
"cli-color": "^1.4.0",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"commonmark": "^0.28.1",
"globby": "^7.1.1",
"html-minifier": "^3.5.21",
"js-beautify": "^1.8.9",
"json-override": "^0.2.0",
"json-schema-to-typescript": "^5.7.0",
"source-map-support": "^0.5.10",
"xregexp": "^4.2.4"
},
"scripts": {
"build": "node build/Build.js",
"build-verbose": "node build/Build.js --verbose",
"build-dry": "node build/Build.js --dry-run",
"build-debug": "node build/Build.js --debug --verbose",
"deploy": "npm install -g .",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
}
}