forked from linfaxin/AndroidUIX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "androiduix",
"version": "0.7.0",
"description": "Framework to make high-performance SPA/WebApp. Render with web canvas.",
"keywords": [
"webapp",
"app",
"canvas",
"spa"
],
"author": "LinFaXin",
"maintainers": [
"LinFaXin <[email protected]> (http://linfaxin.com)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/linfaxin/AndroidUIX"
},
"bugs": {
"url": "https://github.com/linfaxin/AndroidUIX/issues"
},
"devDependencies": {
"jsdom": "^7.2.2",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0"
},
"scripts": {
"build" : "npm install --registry=https://registry.npm.taobao.org && npm run buildRes && npm run buildTS2ES6 && npm run buildES62ES5",
"buildRes" : "cd src && node build_sdk_res.js",
"buildTS2ES6" : "cd src && \"../buildtool/typescript/bin/tsc\" -p ./",
"buildES62ES5" : "cd src && node insert_sdk_version_dist.js && babel ../dist/android-ui.js -o ../dist/android-ui.es5.js -s --presets=es2015"
}
}