-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.2 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": "tss-formatter",
"version": "0.0.9",
"description": "Titanium Alloy .tss files formatter, order, beautifier for your coding standards.",
"keywords": [
"appcelerator",
"titanium",
"alloy",
"cli",
"tss",
"formatter",
"beautifier",
"beautify"
],
"main": "index.js",
"bin": {
"tssf": "bin/tssf",
"tss-formatter": "bin/tssf"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"preferGlobal": true,
"author": {
"name": "Kosuke Isobe",
"email": "isobe@k0suke.be",
"url": "https://github.com/k0sukey"
},
"homepage": "https://github.com/k0sukey/tss-formatter",
"repository": {
"type": "git",
"url": "git://github.com/k0sukey/tss-formatter.git"
},
"bugs": {
"url": "https://github.com/k0sukey/tss-formatter/issues"
},
"license": "MIT",
"dependencies": {
"alloy": "^1.7.3",
"chalk": "^1.0.0",
"color-parser": "^0.1.0",
"diff": "^1.4.0",
"fs-extra": "^0.18.4",
"lodash": "^3.9.1",
"meow": "^3.1.0",
"tiapp.xml": "^0.2.2",
"wrench": "^1.5.8"
},
"engines": {
"node": ">=0.10"
},
"devDependencies": {
"cheerio": "^0.19.0",
"request": "^2.57.0"
}
}