-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 764 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 764 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
{
"name": "minecraft-server-properties-parser",
"version": "1.9.0",
"description": "An API for parsing, stringifying & write the Minecraft server.properties file format",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Alan Escarcha <https://github.com/alanescarcha>",
"homepage": "https://github.com/alanescarcha/minecraft-properties-parser",
"license": "ISC",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"clean": "rimraf --glob dist/*",
"build": "npm run clean && tsc"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"jest": "^29.5.0",
"rimraf": "^4.4.1",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"files": [
"dist"
]
}