-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·78 lines (78 loc) · 1.7 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
76
77
78
{
"name": "rgl",
"version": "0.0.0",
"description": "An engine that supports colors for RogueLike games.",
"keywords": [
"RGL",
"colors",
"roguelike",
"format"
],
"homepage": "https://github.com/Valen-H/RGL#README.md",
"bugs": {
"url": "https://github.com/Valen-H/RGL/issues",
"email": "alternativexxxy@gmail.com"
},
"license": "ISC",
"author": "V. H. <alternativexxxy@gmail.com> (https://github.com/Valen-H)",
"contributors": [],
"files": [
"*"
],
"main": "./dist/lib/rgl.js",
"bin": "./dist/bin/rgl.js",
"browser": false,
"man": [],
"directories": {
"lib": "./lib",
"bin": "./dist/bin",
"man": "./man",
"doc": "./doc",
"example": "./test",
"test": "./test"
},
"typings": "./lib/typings/rgl.d.ts",
"typesVersions": {
">=3.0": {
"*": [
"./lib/*"
]
}
},
"repository": {
"type": "git",
"url": "git://github.com/Valen-H/RGL.git",
"directory": "./"
},
"config": {
"port": 8080
},
"dependencies": {
"chalk": "^3.0.0",
"fs-extra": "^8.1.0",
"tslib": "^1.13.0"
},
"devDependencies": {
"@types/fs-extra": "^8.1.1",
"@types/node": "^13.13.15",
"typescript": "^3.9.7"
},
"peerDependencies": {},
"optionalDependencies": {},
"engines": {
"node": ">=12.0.0",
"npm": ">=3.0.0"
},
"engineStrict": false,
"os": [],
"cpu": [],
"preferGlobal": true,
"private": false,
"publishConfig": {},
"scripts": {
"start": "node test/index.js",
"test": "set FORCE_COLOR=3&&set NODE_DEBUG=RGL*&&node test/index.js",
"build": "tsc -w"
},
"bundleDependencies": []
}