forked from thiagodnf/wumpus-world-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 765 Bytes
/
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
{
"name": "wumpus-world-simulator",
"version": "1.0.0",
"description": "A Wumpus World Simulator developed in Javascript, HTML and CSS",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "npx eslint .",
"lint-fix": "npx eslint . --fix",
"update-dependencies": "ncu -u"
},
"repository": {
"type": "git",
"url": "https://github.com/thiagodnf/wumpus-world-simulator"
},
"author": "Thiago Ferreira",
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagodnf/wumpus-world-simulator/issues"
},
"homepage": "http://thiagodnf.github.io/wumpus-world-simulator",
"devDependencies": {
"nodemon": "3.0.1"
},
"dependencies": {
"connect": "3.7.0",
"serve-static": "1.15.0"
}
}