forked from tonylukasavage/ti-mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "ti-mocha",
"version": "0.2.0",
"description": "Simple and reliable support for mocha testing with Appcelerator's Titanium SDK",
"keywords": [
"mocha",
"testing",
"test",
"titanium",
"appcelerator",
"alloy",
"unit test"
],
"homepage": "http://tonylukasavage.com/ti-mocha/",
"bugs": {
"url": "https://github.com/tonylukasavage/ti-mocha/issues",
"email": "anthony.lukasavage@gmail.com"
},
"license": "MIT",
"author": {
"name": "Tony Lukasavage",
"email": "anthony.lukasavage@gmail.com",
"url": "http://tonylukasavage.com"
},
"main": "./ti-mocha.js",
"scripts": {
"test": "grunt test",
"install": "node ./lib/install.js"
},
"repository": {
"type": "git",
"url": "git://github.com/tonylukasavage/ti-mocha.git"
},
"devDependencies": {
"acorn": "~0.4.2",
"grunt": "~0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-jshint": "~0.7.2",
"grunt-mocha-test": "~0.8.1",
"grunt-titanium": "^0.2.0",
"mocha": "1.21.5",
"should": "~2.1.1",
"wrench": "~1.5.4"
},
"engines": {
"node": ">=0.8"
}
}