-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·22 lines (22 loc) · 883 Bytes
/
package.json
File metadata and controls
executable file
·22 lines (22 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "Doom",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:client": "npm run build:wad && npm run build:engine && npm run build:app",
"build:client:dev": "npm run build:wad:watch & npm run build:engine:watch & npm run build:app:watch",
"build:wad": "npm run build --prefix ./wad/",
"build:wad:watch": "npm run build:wad -- --watch",
"build:engine": "npm run build --prefix ./engine/",
"build:engine:watch": "npm run build:engine -- --watch",
"build:app": "webpack --config ./client/webpack.config.js",
"build:app:watch": "npm run build:app -- --watch",
"build:debug": "npm run build --prefix ./debug/",
"build:debug:watch": "npm run build:debug -- -- --watch"
},
"author": "smol",
"license": "LGPL-3.0",
"devDependencies": {}
}