-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.18 KB
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
{
"name": "spritesheet-splitter-cli",
"author": "Vadim Postnikov",
"license": "MIT",
"version": "1.0.12",
"description": "CLI tools for export sprites from sprite sheet.",
"main": "app.js",
"bin": {
"spritesheet-splitter": "./bin/app.js"
},
"scripts": {
"build": "webpack --config webpack.dev.js",
"publish": "webpack --config webpack.prod.js"
},
"files": [
"bin/app.js",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rocket-ua/spritesheet-splitter-cli.git"
},
"keywords": [
"sprite",
"spritesheet",
"sprite sheet",
"splitter"
],
"bugs": {
"url": "https://github.com/rocket-ua/spritesheet-splitter-cli/issues"
},
"homepage": "https://github.com/rocket-ua/spritesheet-splitter-cli#readme",
"dependencies": {
"canvas": "^2.5.0",
"filereader": "^0.10.3",
"xhr2": "^0.2.0",
"xml2js": "^0.4.23",
"yargs": "^15.3.1"
},
"devDependencies": {
"babel-loader": "^8.1.0",
"node-loader": "^0.6.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"webpack-stream": "^5.2.1"
}
}