-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
59 lines (59 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
54
55
56
57
58
59
{
"name": "triple",
"version": "0.4.0-dev",
"description": "REPL for Titanium",
"homepage": "git://github.com/tonylukasavage/triple",
"bugs": {
"url": "https://github.com/tonylukasavage/triple/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Tony Lukasavage",
"email": "[email protected]",
"url": "https://github.com/tonylukasavage"
},
"main": "index.js",
"bin": {
"triple": "./bin/triple",
"appc-repl": "./bin/triple"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/tonylukasavage/triple.git"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-mocha-test": "~0.10.2",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-clean": "~0.5.0",
"istanbul": "~0.2.10",
"mocha": "~1.19.0",
"should": "~3.3.1"
},
"engines": {
"node": ">=0.10"
},
"keywords": [
"titanium",
"repl",
"appcelerator",
"appc-cli-plugin"
],
"dependencies": {
"acorn": "2.4.0",
"async": "1.4.2",
"chalk": "1.1.1",
"char-spinner": "^1.0.1",
"commander": "^2.2.0",
"fs-extra": "0.24.0",
"lodash": "3.10.1",
"replace": "^0.3.0",
"request": "^2.39.0",
"tiapp.xml": "^0.2.2",
"titanium": "5.0.2"
}
}