-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"name": "c-mobile",
"version": "1.4.13",
"description": "Vue 手机端组件,支持 megalo",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.js",
"author": "zhuning <chooin@126.com>",
"scripts": {
"deploy": "cd mobile && yarn && yarn build",
"build": "npm-run-all build:*",
"build:umd": "rollup --config scripts/rollup.umd.config.js --format umd --file dist/index.umd.js",
"build:es": "rollup --config scripts/rollup.es.config.js --format es --file dist/index.esm.js",
"build:unpkg": "rollup --config scripts/rollup.unpkg.config.js --format iife --file dist/index.js",
"build:css": "gulp --gulpfile scripts/gulpfile.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chooin/c-mobile.git"
},
"keywords": [
"mini-program",
"megalo",
"vue",
"components"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Chooin/c-mobile/issues"
},
"homepage": "https://github.com/Chooin/c-mobile#readme",
"devDependencies": {
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-clean-css": "^3.9.4",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.1",
"npm-run-all": "^4.1.5",
"rollup": "^0.64.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"rollup-plugin-vue": "^4.3.2",
"vue-template-compiler": "^2.5.17"
},
"peerDependencies": {
"vue": ">= 2.4.4"
},
"files": [
"dist",
"packages"
]
}