-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.31 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
{
"name": "dungeoneer",
"version": "2.1.6",
"description": "A procedural dungeon generator",
"main": "lib/index.js",
"types": "./lib/dungeoneer.d.ts",
"homepage": "https://github.com/LucianBuzzo/dungeoneer",
"repository": {
"type": "git",
"url": "git://github.com/LucianBuzzo/dungeoneer.git"
},
"scripts": {
"test": "nyc --reporter=lcov ava -v",
"lint": "standard",
"ci": "npm run lint && npm run test",
"mutate": "stryker run",
"dev": "parcel ./demo/index.html",
"build": "parcel build --public-url --no-minify ./demo/index.html"
},
"keywords": [
"procedural",
"map",
"generator",
"dungeon",
"games",
"level",
"roguelike"
],
"author": "Lucian Buzzo <[email protected]>",
"license": "MIT",
"dependencies": {
"chance": "^1.0.18",
"underscore": "^1.8.3",
"victor": "^1.1.0"
},
"devDependencies": {
"ava": "^3.15.0",
"nyc": "^15.1.0",
"parcel": "^2.0.1",
"standard": "^16.0.4",
"stryker": "^0.33.1",
"stryker-api": "^0.22.0",
"stryker-html-reporter": "^0.16.9",
"stryker-javascript-mutator": "^0.12.1"
},
"ava": {
"files": [
"test/**/*.spec.js"
]
},
"browserslist": [
"last 2 Chrome versions"
],
"targets": {
"module": false,
"main": false,
"types": false
}
}