-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
54
55
56
{
"name": "tile-extruder",
"description": "A tiny Node app to extrude tiles in tilesets to avoid bleeding issues. See relevant [Phaser issue](https://github.com/photonstorm/phaser/issues/3229)",
"version": "2.1.0",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"scripts": {
"clean": "shx rm -rf bin",
"build": "tsc",
"pretest": "npm run build",
"test": "ts-node ./tests/index.ts",
"demo": "http-server ./examples/phaser -c-1 -o",
"doc": "esdoc -c ./.esdoc.json",
"postdoc": "shx cp -r doc-source/ docs/",
"deploy:doc": "gh-pages --branch gh-pages --dist docs",
"predeploy:doc": "npm run doc",
"prettier": "prettier --write \"./{src,tests}/**/*.{js,ts}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/sporadic-labs/tile-extruder.git"
},
"prettier": {
"printWidth": 100
},
"files": [
"bin",
"src"
],
"author": "",
"license": "ISC",
"bin": {
"tile-extruder": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/sporadic-labs/tile-extruder/issues"
},
"homepage": "https://github.com/sporadic-labs/tile-extruder#readme",
"dependencies": {
"commander": "^7.1.0",
"jimp": "^0.16.1"
},
"devDependencies": {
"esdoc": "^1.1.0",
"esdoc-node": "^1.0.5",
"esdoc-standard-plugin": "^1.0.0",
"gh-pages": "^3.1.0",
"http-server": "^0.12.3",
"imagemin": "^7.0.1",
"imagemin-pngquant": "^9.0.1",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}