-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.09 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
{
"name": "scene-animation-template",
"version": "1.0.0",
"description": "针对手机端活动页等应用场景的一套可快速构建的H5模版",
"main": "index.html",
"author": {
"name": "jweboy",
"email": "[email protected]",
"url": "http://jweboy.com"
},
"license": "MIT",
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js",
"fastclick": "./vendors/fastclick.min.js",
"swiper": "./node_modules/swiper/dist/js/swiper.jquery.js"
},
"browserify-shim": {
"jquery": "$",
"swiper": "Swiper",
"fastclick": "FastClick"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"repository": {
"type": "git",
"url": "https://github.com/jweboy/h5-biolerplate.git"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.1",
"babel-preset-es2015": "^6.22.0",
"browser-sync": "^2.18.8",
"browserify": "^14.1.0",
"browserify-shim": "^3.8.14",
"cross-env": "^3.2.3",
"del": "^2.2.2",
"eslint": "^3.18.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-clean-css": "^3.0.4",
"gulp-concat": "^2.6.0",
"gulp-download": "^0.0.1",
"gulp-htmlmin": "^3.0.0",
"gulp-inject": "^4.2.0",
"gulp-load-plugins": "^1.5.0",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-rev": "^7.1.2",
"gulp-rev-collector": "^1.1.1",
"gulp-uglify": "^2.1.0",
"minimist": "^1.2.0",
"rimraf": "^2.6.1",
"run-sequence": "^1.2.2",
"stream-series": "^0.1.1",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"dev": "gulp --env=dev",
"build": "gulp --env=build",
"clean": "rimraf node_modules"
},
"dependencies": {
"animate.css": "^3.5.2",
"download": "^6.2.5",
"fastclick": "^1.0.6",
"jquery": "^3.2.1",
"swiper": "^3.4.2"
}
}