-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.43 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
{
"name": "ti-starter",
"version": "1.0.0",
"description": "Appcelerator Titanium Starter project",
"main": "index.js",
"scripts": {
"start": "appc run -p ios -C? --liveview",
"test": "npm run eslint && alloy compile --config platform=ios && MOBILETARGET=iphone ava \"app/**/*.test.js\" --serial --verbose",
"test:ios": "alloy compile --config platform=ios && MOBILETARGET=iphone ava \"app/**/*.test.js\" --serial --verbose",
"test:ios:watch": "appc alloy compile --config platform=ios -D test && MOBILETARGET=iphone ava \"app/**/*.test.js\" --serial --verbose --watch",
"test:android": "alloy compile --config platform=android --logLevel 4 && MOBILETARGET=android ava \"app/**/*.test.js\" --serial --verbose",
"test:android:watch": "alloy compile --config platform=android && MOBILETARGET=android ava \"app/**/*.test.js\" --serial --verbose --watch",
"coverage": "nyc npm test && nyc report",
"eslint": "eslint app"
},
"pre-commit": [
"eslint"
],
"keywords": [
"appcelerator",
"titanium",
"alloy",
"cli",
"vm",
"ava",
"chai",
"ti-slag"
],
"author": "Dave Hudson",
"license": "ISC",
"devDependencies": {
"alloy": "^1.8.5",
"app-root-path": "^1.0.0",
"ava": "^0.14.0",
"chai": "^3.5.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^7.0.0",
"pre-commit": "^1.1.2",
"ti-slag": "0.0.25",
"ticons": "*",
"titanium": "^5.0.7"
}
}