-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.79 KB
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
{
"name": "phonegap-vueify",
"version": "1.0.7",
"description": "PhoneGap template using Vue, Browserify, ES2015, hot reload, linting and unit testing.",
"author": {
"name": "Maurizio Lepora",
"email": "maurizio.lepora@gmail.com",
"url": "https://github.com/lemaur/"
},
"repository": {
"type": "git",
"url": "https://github.com/lemaur/phonegap-vueify.git"
},
"bugs": {
"url": "https://github.com/lemaur/phonegap-vueify/issues"
},
"homepage": "https://github.com/lemaur/phonegap-vueify#readme",
"license": "MIT",
"keywords": [
"ecosystem:phonegap",
"ecosystem:cordova",
"cordova:template",
"phonegap:template",
"vue.js",
"browserify",
"vueify",
"hot-reload"
],
"cordova": {
"id": "phonegap-vueify",
"platforms": [
"android",
"ios",
"browser"
]
},
"scripts": {
"watchify": "watchify -vd -p browserify-hmr -e www/src/main.js -o www/dist/build.js",
"serve": "phonegap serve --port 8888",
"dev": "npm-run-all --parallel watchify serve",
"build": "cross-env NODE_ENV=production browserify -e www/src/main.js | uglifyjs -c warnings=false -m > www/dist/build.js & cordova build --release --device --target=",
"lint": "eslint --ext .js,.vue www/src www/test/unit",
"test": "karma start karma.conf.js",
"prepare": "cordova platform add",
"ios": "cordova run ios",
"android": "cordova run android",
"compile": "browserify -e www/src/main.js -o www/dist/build.js & cordova compile --debug --target=",
"clean:platforms": "rimraf platforms/*",
"clean:dist": "rimraf www/dist/*",
"clean": "npm-run-all clean:platforms clean:dist"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"engine": "node >= 5.0.0",
"dependencies": {
"phonegap": "^6.2.1",
"vue": "^1.0.0",
"vuex": "^0.6.3",
"vue-resource": "^0.7.0"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^5.8.0",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-hmr": "^0.3.1",
"cordova": "^6.1.1",
"cross-env": "^1.0.5",
"eslint": "^1.10.3",
"eslint-plugin-html": "^1.1.0",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.15",
"karma-browserify": "^4.4.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.23",
"npm-run-all": "^1.6.0",
"phantomjs-prebuilt": "^2.1.3",
"proxyquireify": "^3.0.1",
"rimraf": "^2.5.2",
"stylus": "^0.54.5",
"uglify-js": "^2.5.0",
"vue-hot-reload-api": "^1.2.2",
"vueify": "^8.0.0",
"vueify-insert-css": "^1.0.0",
"watchify": "^3.4.0"
}
}