-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 898 Bytes
/
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
{
"name": "SpiralArm",
"version": "1.0.0",
"description": "A Demo Project using Babel and ES6 to generate a Titanium project",
"scripts": {
"clean_old": "rm -rf ./Resources && mkdir ./Resources",
"clean": "rm ./Resources/*",
"build-app": "babel -d ./Resources ./src -s --ignore '/system/underscore.js'",
"copy-assets": "cp -rf ./src/assets/. ./Resources",
"build": "npm run build-app && npm run copy-assets",
"start": "ti build -p ios --device-id --log-level info",
"test": "npm run build-app && node ./Resources/test.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.4.0",
"babel-preset-stage-2": "^6.24.1"
},
"babel": {
"presets": [
"env",
"stage-2"
],
"ignore": [
"/system/underscore.js"
]
},
"keywords": [],
"author": "SpiralArm Consulting Ltd",
"license": "ISC"
}