11{
2- "name" : " vue-native-core" ,
3- "version" : " 0.0.1-alpha .1" ,
4- "description" : " Create mobile apps using vuejs" ,
5- "main" : " dist/vue.runtime.esm.js" ,
6- "module" : " dist/vue.runtime.esm.js" ,
7- "unpkg" : " dist/vue.js" ,
8- "typings" : " types/index.d.ts" ,
9- "repository" : {
10- "type" : " git" ,
11- "url" : " https://github.com/GeekyAnts/vue-native-core.git"
12- },
13- "keywords" : [
14- " vue" ,
15- " native" ,
16- " mobile"
17- ],
18- "engines" : {
19- "node" : " ^4.5 || >=5.10"
20- },
21- "engineStrict" : true ,
22- "author" : " Geekyants (https://geekyants.io/)" ,
23- "license" : " MIT" ,
24- "bugs" : {
25- "url" : " https://github.com/GeekyAnts/vue-native-core/issues"
26- },
27- "files" : [
28- " src" ,
29- " dist/*.js" ,
30- " types/*.d.ts"
31- ],
32- "scripts" : {
33- "dev" : " rollup -w -c build/config.js --environment TARGET:web-full-dev" ,
34- "dev:cjs" : " rollup -w -c build/config.js --environment TARGET:web-runtime-cjs" ,
35- "dev:esm" : " rollup -w -c build/config.js --environment TARGET:web-runtime-esm" ,
36- "dev:observer" : " rollup -w -c build/config.js --environment TARGET:common-observer" ,
37- "dev:parser" : " rollup -w -c build/config.js --environment TARGET:template-parser" ,
38- "dev:compiler" : " rollup -w -c build/config.js --environment TARGET:react-vue-template-compiler" ,
39- "dev:helper" : " rollup -w -c build/config.js --environment TARGET:react-vue-helper" ,
40- "dev:react" : " rollup -w -c build/config.js --environment TARGET:react-vue" ,
41- "dev:test" : " karma start build/karma.dev.config.js" ,
42- "dev:ssr" : " rollup -w -c build/config.js --environment TARGET:web-server-renderer" ,
43- "dev:weex" : " rollup -w -c build/config.js --environment TARGET:weex-framework " ,
44- "dev:weex:compiler" : " rollup -w -c build/config.js --environment TARGET:weex-compiler " ,
45- "build" : " node build/build.js" ,
46- "build:ssr" : " npm run build -- vue.runtime.common.js,vue-server-renderer" ,
47- "build:weex" : " npm run build -- weex-vue-framework,weex-template-compiler" ,
48- "test" : " npm run lint && flow check && npm run test:types && npm run test:cover && npm run test:e2e -- --env phantomjs && npm run test:ssr && npm run test:weex" ,
49- "test:unit" : " karma start build/karma.unit.config.js" ,
50- "test:cover" : " karma start build/karma.cover.config.js" ,
51- "test:e2e" : " npm run build -- vue.min.js && node test/e2e/runner.js" ,
52- "test:weex" : " npm run build:weex && jasmine JASMINE_CONFIG_PATH=test/weex/jasmine.json" ,
53- "test:ssr" : " npm run build:ssr && jasmine JASMINE_CONFIG_PATH=test/ssr/jasmine.json" ,
54- "test:sauce" : " npm run sauce -- 0 && npm run sauce -- 1 && npm run sauce -- 2" ,
55- "test:types" : " tsc -p ./types/test/tsconfig.json" ,
56- "lint" : " eslint src build test" ,
57- "flow" : " flow check" ,
58- "sauce" : " karma start build/karma.sauce.config.js" ,
59- "bench:ssr" : " npm run build:ssr && node benchmarks/ssr/renderToString.js && node benchmarks/ssr/renderToStream.js" ,
60- "release" : " bash build/release.sh" ,
61- "release:weex" : " bash build/release-weex.sh" ,
62- "install:hooks" : " ln -fs ../../build/git-hooks/pre-commit .git/hooks/pre-commit" ,
63- "run-vue" : " cross-env NODE_ENV=development webpack-dev-server --open --hot"
64- },
65- "homepage" : " https://github.com/GeekyAnts/vue-native-core" ,
66- "devDependencies" : {
67- "babel-core" : " ^6.9.0" ,
68- "babel-eslint" : " ^7.1.0" ,
69- "babel-helper-vue-jsx-merge-props" : " ^2.0.2" ,
70- "babel-loader" : " ^6.2.4" ,
71- "babel-plugin-istanbul" : " ^4.0.0" ,
72- "babel-plugin-syntax-dynamic-import" : " ^6.18.0" ,
73- "babel-plugin-syntax-jsx" : " ^6.18.0" ,
74- "babel-plugin-transform-decorators-legacy" : " ^1.3.4" ,
75- "babel-plugin-transform-vue-jsx" : " ^3.2.0" ,
76- "babel-preset-es2015" : " ^6.9.0" ,
77- "babel-preset-flow-vue" : " ^1.0.0" ,
78- "babel-preset-latest" : " ^6.0.0" ,
79- "babel-preset-react" : " ^6.24.1" ,
80- "buble" : " ^0.15.2" ,
81- "chalk" : " ^1.1.3" ,
82- "change-case" : " ^3.0.1" ,
83- "chromedriver" : " ^2.21.2" ,
84- "codecov.io" : " ^0.1.6" ,
85- "cross-env" : " ^3.0.0" ,
86- "cross-spawn" : " ^5.0.1" ,
87- "css-loader" : " ^0.25.0" ,
88- "de-indent" : " ^1.0.2" ,
89- "element-ui" : " ^1.3.4" ,
90- "es6-promise" : " ^4.0.5" ,
91- "eslint" : " ^3.19.0" ,
92- "eslint-config-standard" : " ^10.2.1" ,
93- "eslint-config-vue" : " ^2.0.1" ,
94- "eslint-loader" : " ^1.3.0" ,
95- "eslint-plugin-flowtype" : " ^2.16.0" ,
96- "eslint-plugin-jasmine" : " ^2.1.0" ,
97- "eslint-plugin-react" : " ^6.10.3" ,
98- "eslint-plugin-react-native" : " ^2.3.2" ,
99- "eslint-plugin-vue" : " ^2.0.0" ,
100- "express" : " ^4.15.2" ,
101- "extract-text-webpack-plugin" : " ^2.1.0" ,
102- "file-loader" : " ^0.10.1" ,
103- "flow-bin" : " ^0.39.0" ,
104- "hash-sum" : " ^1.0.2" ,
105- "he" : " ^1.1.0" ,
106- "http-server" : " ^0.9.0" ,
107- "jasmine" : " ^2.5.2" ,
108- "jasmine-core" : " ^2.5.2" ,
109- "js-beautify" : " ^1.6.14" ,
110- "karma" : " ^1.1.0" ,
111- "karma-chrome-launcher" : " ^2.0.0" ,
112- "karma-coverage" : " ^1.0.0" ,
113- "karma-firefox-launcher" : " ^1.0.0" ,
114- "karma-jasmine" : " ^1.0.2" ,
115- "karma-mocha-reporter" : " ^2.0.4" ,
116- "karma-phantomjs-launcher" : " ^1.0.0" ,
117- "karma-safari-launcher" : " ^1.0.0" ,
118- "karma-sauce-launcher" : " ^1.0.0" ,
119- "karma-sourcemap-loader" : " ^0.3.0" ,
120- "karma-webpack" : " ^2.0.1" ,
121- "lodash" : " ^4.17.1" ,
122- "lodash.template" : " ^4.4.0" ,
123- "lru-cache" : " ^4.0.2" ,
124- "nightwatch" : " ^0.9.9" ,
125- "nightwatch-helpers" : " ^1.2.0" ,
126- "node-sass" : " ^4.5.3" ,
127- "phantomjs-prebuilt" : " ^2.1.1" ,
128- "pug" : " ^2.0.0-rc.1" ,
129- "pug-loader" : " ^2.3.0" ,
130- "resolve" : " ^1.2.0" ,
131- "rollup" : " ^0.41.4" ,
132- "rollup-plugin-alias" : " ^1.2.0" ,
133- "rollup-plugin-babel" : " ^2.4.0" ,
134- "rollup-plugin-buble" : " ^0.15.0" ,
135- "rollup-plugin-flow-no-whitespace" : " ^1.0.0" ,
136- "rollup-plugin-replace" : " ^1.1.0" ,
137- "rollup-watch" : " ^3.2.2" ,
138- "sass-loader" : " ^6.0.5" ,
139- "selenium-server" : " ^2.53.1" ,
140- "serialize-javascript" : " ^1.3.0" ,
141- "typescript" : " ^2.1.6" ,
142- "uglify-js" : " ^2.6.2" ,
143- "vue-loader" : " ^12.0.4" ,
144- "vue-template-compiler" : " ^2.3.2" ,
145- "webpack" : " ^2.4.1" ,
146- "webpack-dev-middleware" : " ^1.10.2" ,
147- "webpack-dev-server" : " ^2.2.0" ,
148- "weex-js-runtime" : " ^0.17.0-alpha4" ,
149- "weex-vdom-tester" : " ^0.1.4"
150- },
151- "dependencies" : {
152- "element-ui" : " ^1.3.4" ,
153- "prop-types" : " ^15.5.8" ,
154- "react" : " ^15.5.4" ,
155- "react-dom" : " ^15.5.4" ,
156- "style-loader" : " ^0.17.0" ,
157- "vue" : " 2.3.3" ,
158- "vuex" : " ^2.3.1"
159- }
160- }
2+ "name" : " vue-native-core" ,
3+ "version" : " 0.0.1" ,
4+ "description" : " Create mobile apps using vuejs" ,
5+ "main" : " dist/vue.runtime.esm.js" ,
6+ "module" : " dist/vue.runtime.esm.js" ,
7+ "unpkg" : " dist/vue.js" ,
8+ "typings" : " types/index.d.ts" ,
9+ "repository" : {
10+ "type" : " git" ,
11+ "url" : " https://github.com/GeekyAnts/vue-native-core.git"
12+ },
13+ "keywords" : [
14+ " vue" ,
15+ " native" ,
16+ " mobile"
17+ ],
18+ "engines" : {
19+ "node" : " ^4.5 || >=5.10"
20+ },
21+ "engineStrict" : true ,
22+ "author" : " Geekyants (https://geekyants.io/)" ,
23+ "license" : " MIT" ,
24+ "bugs" : {
25+ "url" : " https://github.com/GeekyAnts/vue-native-core/issues"
26+ },
27+ "files" : [
28+ " src" ,
29+ " dist/*.js" ,
30+ " types/*.d.ts"
31+ ],
32+ "scripts" : {
33+ "dev" : " rollup -w -c build/config.js --environment TARGET:web-full-dev" ,
34+ "dev:cjs" : " rollup -w -c build/config.js --environment TARGET:web-runtime-cjs" ,
35+ "dev:esm" : " rollup -w -c build/config.js --environment TARGET:web-runtime-esm" ,
36+ "dev:observer" : " rollup -w -c build/config.js --environment TARGET:common-observer" ,
37+ "dev:parser" : " rollup -w -c build/config.js --environment TARGET:template-parser" ,
38+ "dev:compiler" : " rollup -w -c build/config.js --environment TARGET:react-vue-template-compiler" ,
39+ "dev:helper" : " rollup -w -c build/config.js --environment TARGET:react-vue-helper" ,
40+ "dev:react" : " rollup -w -c build/config.js --environment TARGET:react-vue" ,
41+ "dev:test" : " karma start build/karma.dev.config.js" ,
42+ "dev:ssr" : " rollup -w -c build/config.js --environment TARGET:web-server-renderer" ,
43+ "dev:weex" : " rollup -w -c build/config.js --environment TARGET:weex-framework " ,
44+ "dev:weex:compiler" : " rollup -w -c build/config.js --environment TARGET:weex-compiler " ,
45+ "build" : " node build/build.js" ,
46+ "build:ssr" : " npm run build -- vue.runtime.common.js,vue-server-renderer" ,
47+ "build:weex" : " npm run build -- weex-vue-framework,weex-template-compiler" ,
48+ "test" : " npm run lint && flow check && npm run test:types && npm run test:cover && npm run test:e2e -- --env phantomjs && npm run test:ssr && npm run test:weex" ,
49+ "test:unit" : " karma start build/karma.unit.config.js" ,
50+ "test:cover" : " karma start build/karma.cover.config.js" ,
51+ "test:e2e" : " npm run build -- vue.min.js && node test/e2e/runner.js" ,
52+ "test:weex" : " npm run build:weex && jasmine JASMINE_CONFIG_PATH=test/weex/jasmine.json" ,
53+ "test:ssr" : " npm run build:ssr && jasmine JASMINE_CONFIG_PATH=test/ssr/jasmine.json" ,
54+ "test:sauce" : " npm run sauce -- 0 && npm run sauce -- 1 && npm run sauce -- 2" ,
55+ "test:types" : " tsc -p ./types/test/tsconfig.json" ,
56+ "lint" : " eslint src build test" ,
57+ "flow" : " flow check" ,
58+ "sauce" : " karma start build/karma.sauce.config.js" ,
59+ "bench:ssr" : " npm run build:ssr && node benchmarks/ssr/renderToString.js && node benchmarks/ssr/renderToStream.js" ,
60+ "release" : " bash build/release.sh" ,
61+ "release:weex" : " bash build/release-weex.sh" ,
62+ "install:hooks" : " ln -fs ../../build/git-hooks/pre-commit .git/hooks/pre-commit" ,
63+ "run-vue" : " cross-env NODE_ENV=development webpack-dev-server --open --hot"
64+ },
65+ "homepage" : " https://github.com/GeekyAnts/vue-native-core" ,
66+ "devDependencies" : {
67+ "babel-core" : " ^6.9.0" ,
68+ "babel-eslint" : " ^7.1.0" ,
69+ "babel-helper-vue-jsx-merge-props" : " ^2.0.2" ,
70+ "babel-loader" : " ^6.2.4" ,
71+ "babel-plugin-istanbul" : " ^4.0.0" ,
72+ "babel-plugin-syntax-dynamic-import" : " ^6.18.0" ,
73+ "babel-plugin-syntax-jsx" : " ^6.18.0" ,
74+ "babel-plugin-transform-decorators-legacy" : " ^1.3.4" ,
75+ "babel-plugin-transform-vue-jsx" : " ^3.2.0" ,
76+ "babel-preset-es2015" : " ^6.9.0" ,
77+ "babel-preset-flow-vue" : " ^1.0.0" ,
78+ "babel-preset-latest" : " ^6.0.0" ,
79+ "babel-preset-react" : " ^6.24.1" ,
80+ "buble" : " ^0.15.2" ,
81+ "chalk" : " ^1.1.3" ,
82+ "change-case" : " ^3.0.1" ,
83+ "chromedriver" : " ^2.21.2" ,
84+ "codecov.io" : " ^0.1.6" ,
85+ "cross-env" : " ^3.0.0" ,
86+ "cross-spawn" : " ^5.0.1" ,
87+ "css-loader" : " ^0.25.0" ,
88+ "de-indent" : " ^1.0.2" ,
89+ "element-ui" : " ^1.3.4" ,
90+ "es6-promise" : " ^4.0.5" ,
91+ "eslint" : " ^3.19.0" ,
92+ "eslint-config-standard" : " ^10.2.1" ,
93+ "eslint-config-vue" : " ^2.0.1" ,
94+ "eslint-loader" : " ^1.3.0" ,
95+ "eslint-plugin-flowtype" : " ^2.16.0" ,
96+ "eslint-plugin-jasmine" : " ^2.1.0" ,
97+ "eslint-plugin-react" : " ^6.10.3" ,
98+ "eslint-plugin-react-native" : " ^2.3.2" ,
99+ "eslint-plugin-vue" : " ^2.0.0" ,
100+ "express" : " ^4.15.2" ,
101+ "extract-text-webpack-plugin" : " ^2.1.0" ,
102+ "file-loader" : " ^0.10.1" ,
103+ "flow-bin" : " ^0.39.0" ,
104+ "hash-sum" : " ^1.0.2" ,
105+ "he" : " ^1.1.0" ,
106+ "http-server" : " ^0.9.0" ,
107+ "jasmine" : " ^2.5.2" ,
108+ "jasmine-core" : " ^2.5.2" ,
109+ "js-beautify" : " ^1.6.14" ,
110+ "karma" : " ^1.1.0" ,
111+ "karma-chrome-launcher" : " ^2.0.0" ,
112+ "karma-coverage" : " ^1.0.0" ,
113+ "karma-firefox-launcher" : " ^1.0.0" ,
114+ "karma-jasmine" : " ^1.0.2" ,
115+ "karma-mocha-reporter" : " ^2.0.4" ,
116+ "karma-phantomjs-launcher" : " ^1.0.0" ,
117+ "karma-safari-launcher" : " ^1.0.0" ,
118+ "karma-sauce-launcher" : " ^1.0.0" ,
119+ "karma-sourcemap-loader" : " ^0.3.0" ,
120+ "karma-webpack" : " ^2.0.1" ,
121+ "lodash" : " ^4.17.1" ,
122+ "lodash.template" : " ^4.4.0" ,
123+ "lru-cache" : " ^4.0.2" ,
124+ "nightwatch" : " ^0.9.9" ,
125+ "nightwatch-helpers" : " ^1.2.0" ,
126+ "node-sass" : " ^4.5.3" ,
127+ "phantomjs-prebuilt" : " ^2.1.1" ,
128+ "pug" : " ^2.0.0-rc.1" ,
129+ "pug-loader" : " ^2.3.0" ,
130+ "resolve" : " ^1.2.0" ,
131+ "rollup" : " ^0.41.4" ,
132+ "rollup-plugin-alias" : " ^1.2.0" ,
133+ "rollup-plugin-babel" : " ^2.4.0" ,
134+ "rollup-plugin-buble" : " ^0.15.0" ,
135+ "rollup-plugin-flow-no-whitespace" : " ^1.0.0" ,
136+ "rollup-plugin-replace" : " ^1.1.0" ,
137+ "rollup-watch" : " ^3.2.2" ,
138+ "sass-loader" : " ^6.0.5" ,
139+ "selenium-server" : " ^2.53.1" ,
140+ "serialize-javascript" : " ^1.3.0" ,
141+ "typescript" : " ^2.1.6" ,
142+ "uglify-js" : " ^2.6.2" ,
143+ "vue-loader" : " ^12.0.4" ,
144+ "vue-template-compiler" : " ^2.3.2" ,
145+ "webpack" : " ^2.4.1" ,
146+ "webpack-dev-middleware" : " ^1.10.2" ,
147+ "webpack-dev-server" : " ^2.2.0" ,
148+ "weex-js-runtime" : " ^0.17.0-alpha4" ,
149+ "weex-vdom-tester" : " ^0.1.4"
150+ },
151+ "dependencies" : {
152+ "element-ui" : " ^1.3.4" ,
153+ "prop-types" : " ^15.5.8" ,
154+ "react" : " ^15.5.4" ,
155+ "react-dom" : " ^15.5.4" ,
156+ "style-loader" : " ^0.17.0" ,
157+ "vue" : " 2.3.3" ,
158+ "vuex" : " ^2.3.1"
159+ }
160+ }
0 commit comments