forked from jasonkneen/TiCons-CLI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.58 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
57
58
59
60
61
62
63
64
65
{
"name": "ticons",
"preferGlobal": true,
"version": "0.24.3",
"description": "Generate Titanium & Alloy icons, splash and other assets",
"keywords": [
"titanium",
"alloy",
"appcelerator",
"icons",
"splashes",
"launch",
"images",
"assets",
"generator"
],
"homepage": "https://github.com/fokkezb/ticons-cli",
"bugs": {
"url": "https://github.com/fokkezb/ticons-cli/issues"
},
"license": "MIT",
"author": {
"name": "Fokke Zandbergen",
"email": "mail@fokkezb.nl",
"url": "http://fokkezb.nl"
},
"main": "index.js",
"bin": {
"ticons": "./cli.js"
},
"scripts": {
"test": "grunt test",
"patch": "grunt test && npm version patch -m 'bump version' && npm publish && git push && git push --tags",
"minor": "grunt test && npm version minor -m 'bump version' && npm publish && git push && git push --tags",
"major": "grunt test && npm version major -m 'bump version' && npm publish && git push && git push --tags"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"async": "^3.2.4",
"colors": "^0.6.2",
"commander": "^2.1.0",
"fs-extended": "^0.2.0",
"gm": "~1.23.1",
"semver": "^5.0.1",
"underscore": "^1.5.2",
"update-notifier": "^5.0.0",
"sindresorhus": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git://github.com/fokkezb/ticons-cli.git"
},
"devDependencies": {
"grunt": "^1.4.1",
"grunt-mocha-test": "^0.13.3",
"image-size": "^0.3.5",
"mocha": "^9.0.0",
"should": "~3.1.2"
},
"engines": {
"node": ">=0.8"
}
}