-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.6 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
{
"name": "dungeoneer",
"version": "3.1.0",
"description": "A procedural dungeon generator",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/LucianBuzzo/dungeoneer",
"repository": {
"type": "git",
"url": "git://github.com/LucianBuzzo/dungeoneer.git"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"pretest": "npm run build",
"predev": "npm run build",
"prebuild:demo": "npm run build",
"test": "nyc --reporter=lcov ava -v",
"lint": "standard 'test/**/*.js' 'demo/main.js'",
"typecheck": "tsc -p tsconfig.json --noEmit",
"ci": "npm run lint && npm run typecheck && npm run test",
"dev": "parcel ./demo/index.html",
"build:demo": "parcel build --public-url ./ ./demo/index.html",
"prepublishOnly": "npm run build"
},
"keywords": [
"procedural",
"map",
"generator",
"dungeon",
"games",
"level",
"roguelike"
],
"author": "Lucian Buzzo <lucian.buzzo@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"chance": "^1.0.18",
"underscore": "^1.8.3",
"victor": "^1.1.0"
},
"devDependencies": {
"@types/chance": "^1.1.7",
"@types/node": "^22.13.10",
"@types/underscore": "^1.11.15",
"@types/victor": "^1.1.5",
"ava": "^3.15.0",
"nyc": "^15.1.0",
"parcel": "^2.0.1",
"standard": "^16.0.4",
"typescript": "^5.8.2"
},
"ava": {
"files": [
"test/**/*.spec.js"
]
},
"browserslist": [
"last 2 Chrome versions"
],
"targets": {
"module": false,
"main": false,
"types": false
}
}