-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 783 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "squadmc-maps",
"description": "Repository holding the map files and data for SquadMC",
"version": "1.1.0",
"private": true,
"scripts": {
"mapdata": "node public/mapdata.js > public/mapdata.json",
"info": "node public/mapdata.js info",
"release": "standard-version",
"serve": "npm run mapdata && http-server --cors -c-1 -p 9090"
},
"standard-version": {
"scripts": {
"postchangelog": "replace \"\\nAll notable changes to this project will be documented in this file. See \\[standard-version\\]\\(https://github.com/conventional-changelog/standard-version\\) for commit guidelines.\\n\" \"\" CHANGELOG.md"
}
},
"devDependencies": {
"http-server": "^0.11.1",
"replace": "^1.1.1",
"standard-version": "^7.0.0"
}
}