-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 794 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 794 Bytes
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
{
"name": "doom-roguelike",
"version": "1.0.0",
"description": "Doom Roguelike Game",
"repository": "",
"author": "Dave Rowe",
"license": "MIT",
"private": true,
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --write * .* **/*",
"gh-pages": "rimraf ./dist && parcel build src/index.html --no-source-maps --public-url /dungeon && gh-pages -d dist"
},
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"gh-pages": "^2.1.1",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"rimraf": "^3.0.0"
},
"dependencies": {
"howler": "^2.1.3"
}
}