-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 886 Bytes
/
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
{
"name": "wc3-lua-seed",
"version": "0.3.0",
"description": "Warcraft 3 + lua scripting map seed",
"main": "bundler.js",
"scripts": {
"start": "npx run-p watch watch-re",
"bundle": "node bundler.js",
"bundle.prod": "set BUNDLING_ENV=production && npm run bundle",
"bundle.release": "set BUNDLING_ENV=release && npm run bundle",
"watch": "npx nodemon --config nodemon.json",
"watch-re": "npx nodemon --config nodemon-re.json",
"watch.prod": "set BUNDLING_ENV=production && npm run watch",
"watch.release": "set BUNDLING_ENV=release && npm run watch"
},
"keywords": [],
"author": "Vitor B. B.",
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"glob": "^7.1.6",
"luabundle": "^1.6.0",
"luamin": "^1.0.4",
"ncp": "^2.0.0"
},
"devDependencies": {
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5"
}
}