-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.42 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
{
"name": "@dropecho/dungen",
"version": "1.5.0",
"description": "A dungeon generator.",
"author": "vantreeseba <[email protected]>",
"repository": "github:dropecho/dungen",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"install": "lix download",
"test": "haxelib run dropecho.testing",
"build": "npm run build:haxe && npm run build:example",
"build:haxe": "haxe build.hxml",
"build:docs": "haxelib run dox -i artifacts/docs.xml -o docs/docs --toplevel-package dropecho.dungen -D source-path http://github.com/dropecho/dungen/blob/master/src -D website http://github.com/dropecho/dungen --title 'Dungen API Documentation'",
"build:example": "cp dist/js/cjs/index.cjs docs/dropecho.dungen.js",
"clean": "rm -rf dist && rm -rf artifacts"
},
"files": [
"dist/js/**/*"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"semantic-release": "^19.0.5",
"semantic-release-haxelib": "^1.1.0"
},
"type": "module",
"main": "./dist/js/cjs/index.cjs",
"exports": {
".": {
"require": "./dist/js/cjs/index.cjs",
"import": "./dist/js/esm/index.js"
}
}
}