This repository was archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.49 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.49 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
{
"name": "metronami",
"version": "0.1.3-beta",
"description": "An open source Public Transport network manager for roleplay and fantasy worlds",
"main": "app.js",
"scripts": {
"prestart": "npm i",
"start": "node app.js",
"test": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"build": "pkg .",
"watch": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiyamashu/Metronami.git"
},
"keywords": [
"maps",
"metro",
"subway"
],
"author": "Dylan Kok",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/hiyamashu/Metronami/issues"
},
"homepage": "https://github.com/hiyamashu/Metronami#readme",
"dependencies": {
"chalk": "^4.1.2",
"cookie-parser": "^1.4.5",
"dateformat": "^4.5.1",
"download": "^8.0.0",
"execa": "^5.1.1",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-handlebars": "^5.3.3",
"extract-zip": "^2.0.1",
"get-github-tag": "^1.1.0",
"moment": "^2.29.1",
"node-notifier": "^10.0.0",
"open": "^8.2.1",
"semver": "^7.3.5",
"sequelize": "^6.6.5",
"sqlite3": "^4.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.12"
},
"bin": "app.js",
"pkg": {
"assets": [
"third_party/*/**",
"views/*/**",
"public/*/**",
"app/*/**"
],
"outputPath": "dist"
}
}