forked from alibaba/weex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.21 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "weex",
"version": "0.12.2",
"subversion": {
"framework": "0.29.7",
"transformer": ">=0.1.5 <0.5"
},
"description": "A framework for building Mobile cross-platform UI",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:alibaba/weex.git"
},
"homepage": "http://weex.io/",
"bugs": {
"url": "https://github.com/alibaba/weex/issues"
},
"private": true,
"keywords": [
"weex",
"hybrid",
"webcomponent",
"appframework",
"mvvm",
"javascript",
"webkit",
"v8",
"jscore",
"html5",
"android",
"ios",
"yunos"
],
"engines": {
"node": ">=8"
},
"scripts": {
"build:jsfm": "node scripts/build.js jsfm",
"build:env": "WEEX_FREEZE=true node scripts/build.js env",
"build:polyfill": "node scripts/build.js polyfill",
"build:vue": "node scripts/build.js vue",
"build:rax": "node scripts/build.js rax",
"build:runtime": "node scripts/build.js runtime",
"build": "npm run build:env && npm run build:jsfm && npm run build:vue && npm run build:rax",
"dev:jsfm": "node scripts/build.js jsfm --watch",
"dev:runtime": "node scripts/build.js runtime --watch",
"lint": "eslint runtime",
"test:case": "mocha --require reify test/js-framework/case/tester.js",
"test:unit": "mocha --require reify test/js-framework/unit/**/*",
"test": "npm run lint && npm run test:unit && npm run test:case",
"serve": "serve ./ -p 12580",
"serve:no-port": "serve ./",
"clean": "rm -vrf test/build/*",
"copy:js": "cp -vf ./dist/weex-js-framework.min.js ./pre-build/weex-main-jsfm.js",
"copy": "npm run copy:js"
},
"dependencies": {
"@weex-project/downgrade": "^1.0.3",
"blink-diff": "~1.0.12",
"core-js": "^2.4.0",
"semver": "^5.1.0",
"weex-rax-framework": "0.4.20",
"weex-vue-framework": "2.5.16-weex.5"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.2.1",
"babel-istanbul": "^0.11.0",
"babel-loader": "^6.2.5",
"babel-plugin-coverage": "^1.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"cross-spawn": "^4.0.0",
"css-loader": "^0.26.1",
"danger": "^9.0.0",
"dateformat": "^2.0.0",
"eslint": "^4.18.2",
"eslint-plugin-flowtype": "^2.40.1",
"github": "^9.2.0",
"http-server": "^0.9.0",
"json-loader": "^0.5.4",
"macaca-utils": "^0.1.9",
"mocha": "^2.5.3",
"mocha-simple-html-reporter": "^1.0.1",
"parse-diff": "^0.4.0",
"reify": "^0.3.8",
"rollup": "^0.53.2",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"serve": "^7.1.3",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"uglify-es": "^3.3.4",
"uglify-js": "^2.8.29",
"vue": "2.4.3",
"vue-loader": "^12.2.1",
"vue-template-compiler": "2.4.3",
"webpack": "^1.13.1",
"weex-loader": "^0.5.3",
"weex-vdom-tester": "^0.2.0",
"weex-vue-render": "^1.0.24",
"weex-wd": "^1.0.23",
"xmldom": "^0.1.27"
}
}