This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
91 lines (91 loc) · 2.28 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "faster-titanium",
"version": "1.7.5",
"description": "Accelerate Titanium development",
"license": "MIT",
"main": "index.js",
"directories": {
"test": "spec",
"bin": "dist/bin"
},
"scripts": {
"postinstall": "dist/bin/faster-ti install",
"preuninstall": "dist/bin/faster-ti uninstall",
"test": "mocha --compilers js:espower-babel/guess spec/**/*.spec.js",
"build": "babel src -d dist",
"bmp": "cc-bmp",
"bmp-p": "cc-bmp -p",
"bmp-m": "cc-bmp -m",
"bmp-j": "cc-bmp -j",
"circle": "cc-generate-yml",
"post-dependencies": "echo post-dependencies",
"pre-release": "gulp babel:all",
"post-release": "echo post-release",
"gh-pages": "esdoc -c esdoc.json"
},
"repository": {
"type": "git",
"url": "git://github.com/CureApp/faster-titanium.git"
},
"keywords": [
"titanium",
"appcelerator",
"faster"
],
"author": "CureApp, Inc.",
"engines": {
"node": ">=0.12"
},
"preferGlobal": true,
"dependencies": {
"acorn": "^3.0.2",
"alloy": ">=1.7",
"chalk": "^1.1.1",
"chokidar": "^1.4.2",
"commander": "^2.9.0",
"debug": "^2.2.0",
"openport": "0.0.4",
"randomstring": "^1.1.4",
"semver": "^5.1.0",
"shelljs": "^0.6.0",
"uglify-js": "2.4.15"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-plugin-transform-react-jsx": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"browserify": "^13.0.0",
"esdoc": "^0.4.4",
"esdoc-es7-plugin": "0.0.3",
"espower-babel": "^4.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.7",
"mocha": "^2.4.5",
"node-circleci-autorelease": "^1.5.11",
"power-assert": "^1.2.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"titanium": "^5.0.6",
"vinyl-source-stream": "^1.1.0",
"whatwg-fetch": "^0.11.0"
},
"node-circleci-autorelease": {
"machine": {
"node": {
"version": "4.2.6"
}
},
"config": {
"git-user-name": "CircleCI",
"git-user-email": "[email protected]",
"version-prefix": "v",
"create-branch": false,
"create-gh-pages": true,
"gh-pages-dir": "doc"
}
}
}