-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "minecraft-map-item-tool",
"version": "1.9.0",
"description": "web tool for converting images to minecraft maps",
"main": "lib/server.js",
"scripts": {
"test": "gulp test",
"start": "node lib/server.js",
"build": "gulp",
"clean": "gulp clean",
"test:server": "gulp test:server",
"test:client": "gulp test:client"
},
"repository": {
"type": "git",
"url": "git://github.com/djfun/mc-map-item-tool.git"
},
"author": "Martin Kaistra",
"license": "MIT",
"bugs": {
"url": "https://github.com/djfun/mc-map-item-tool/issues"
},
"homepage": "https://github.com/djfun/mc-map-item-tool",
"engines": {
"node": ">=18"
},
"devDependencies": {
"async": "^3.2.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"casperjs": "^1.1.4",
"chai": "^4.3.7",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-casperjs": "^0.0.7",
"gulp-mocha": "^8.0.0",
"merge-stream": "^2.0.0",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"phantomjs-prebuilt": "^2.1.16",
"require-dir": "^1.2.0",
"yadda": "^2.2.0"
},
"dependencies": {
"archiver": "^5.3.1",
"babel-polyfill": "^6.26.0",
"lazystream": "^1.0.1",
"moment": "^2.29.4",
"node-nbt": "^1.0.0",
"node-static": "^0.7.11",
"winston": "^3.8.2"
}
}