-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.06 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.06 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "rune-tools",
"version": "2.0.2",
"description": "A command line interface (CLI) program for creating and managing Rune-based applications.",
"bin": {
"rune-tools": "bin/rune-tools.js"
},
"scripts": {
"test": "node bin/rune-tools.js"
},
"author": "Henrik Andersen <henrik@vectorpanic.com>",
"license": "MIT",
"template": {
"folders": [
"/asset/",
"/bin/",
"/bin-debug/",
"/lib/",
"/scripts/shell",
"/src/data/resource/",
"/src/scene/game/",
"/src/scope/",
"/src/system/"
],
"files": [
{
"src": "../../asset/tpl/Alias.tpl",
"dst": "/src/scope/Alias.js"
},
{
"src": "../../asset/tpl/bootstrap.tpl",
"dst": "/bin/bootstrap.js"
},
{
"src": "../../asset/tpl/bootstrap.tpl",
"dst": "/bin-debug/bootstrap.js"
},
{
"src": "../../asset/tpl/build_sh.tpl",
"dst": "/scripts/shell/build.sh"
},
{
"src": "../../asset/tpl/Game.tpl",
"dst": "/src/scene/game/Game.js"
},
{
"src": "../../asset/tpl/index_bin.tpl",
"dst": "/bin/index.html"
},
{
"src": "../../asset/tpl/index_debug.tpl",
"dst": "/bin-debug/index.html"
},
{
"src": "../../asset/tpl/Main.tpl",
"dst": "/src/system/Main.js"
},
{
"src": "../../asset/tpl/make_sh.tpl",
"dst": "/scripts/shell/make.sh"
},
{
"src": "../../asset/tpl/Manifest.tpl",
"dst": "/src/scope/Manifest.js"
},
{
"src": "../../asset/tpl/package.tpl",
"dst": "/package.json"
},
{
"src": "../../asset/tpl/Requests.tpl",
"dst": "/src/data/resource/Requests.js"
},
{
"src": "../../asset/tpl/rune.tpl",
"dst": "/lib/rune.js"
},
{
"src": "../../asset/tpl/style.tpl",
"dst": "/bin/style.css"
},
{
"src": "../../asset/tpl/style.tpl",
"dst": "/bin-debug/style.css"
}
]
}
}