-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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": "react-titanium",
"version": "0.4.0",
"description": "React custom renderer for Appcelerator® Titanium™ SDK",
"author": "Pier Paolo Ramon <[email protected]>",
"main": "index.js",
"scripts": {
"compile": "$(npm bin)/babel src --out-dir lib",
"generate-built-ins": "$(npm bin)/babel-node scripts/generate-built-ins",
"prepublish": "npm run generate-built-ins && npm run compile",
"docs:serve": "$(npm bin)/gitbook serve",
"docs:publish": "$(npm bin)/gitbook build && $(npm bin)/gh-pages -d _book",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"appcelerator",
"titanium",
"react",
"renderer"
],
"license": "MIT",
"dependencies": {
"invariant": "^2.1.0",
"titanium-platforms": "^1.0.0"
},
"devDependencies": {
"JSONStream": "^1.0.4",
"babel": "^5.8.20",
"babel-runtime": "^5.8.20",
"chalk": "^1.1.0",
"gh-pages": "^0.3.1",
"gitbook-cli": "^0.3.4",
"map-stream": "0.0.6"
},
"peerDependencies": {
"react": "0.14.0-beta3",
"babel-runtime": "^5.8.9",
"babelify": "^6.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/yuchi/react-titanium.git"
},
"bugs": {
"url": "https://github.com/yuchi/react-titanium/issues"
},
"homepage": "https://github.com/yuchi/react-titanium"
}