-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 961 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
31
32
33
34
35
36
37
38
39
40
{
"name": "mcmotdparser",
"version": "1.3.1",
"description": "A parser for Minecraft Motds in the old style (plain text) and in the new style (json).",
"main": "dist/motdparsernode.js",
"scripts": {
"prepare": "npx gulp",
"test": "jest"
},
"author": "nailujx86",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/nailujx86/mcmotdparser.git"
},
"keywords": [
"minecraft",
"motd",
"parser",
"formatting",
"codes",
"color"
],
"homepage": "https://github.com/nailujx86/mcmotdparser",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"fs-extra": "^9.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-uglify": "^3.0.2",
"gulp-zopfli-green": "^5.0.1",
"jest": "^27.2.5",
"jest-extended": "^1.0.0"
},
"jest": {
"setupFilesAfterEnv": ["jest-extended/all"]
}
}