-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "novel-js",
"version": "0.8.3",
"description": "A lightweight JavaScript text game engine",
"author": "Ville Talonpoika <ville@talonpoika.net> (http://nanof.us)",
"license": "MIT",
"main": "novel.js",
"scripts": {
"start": "http-server",
"sass": "node-sass scss/style.scss css/style.css & cleancss -o css/style.min.css css/style.css",
"build": "node build.js & uglifyjs novel.js --compress --mangle --output novel.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nanofus/novel.js.git"
},
"bugs": {
"url": "https://github.com/Nanofus/novel.js/issues"
},
"homepage": "https://github.com/Nanofus/novel.js",
"keywords": [
"novel-js",
"noveljs",
"novel.js",
"novel",
"text adventure",
"game engine",
"choose your own adventure",
"visual novel",
"text game",
"game",
"adventure",
"fiction",
"prose",
"interactive fiction",
"interactive",
"text",
"javascript"
],
"devDependencies": {
"concat-files": "^0.1.1",
"http-server": "*",
"node-sass": "^4.5.3",
"uglify-es": "^3.0.15",
"clean-css-cli": "^4.1.3"
},
"optionalDependencies": {
"papaparse": "^5.2.0"
}
}