forked from yylgit/vue-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
{
"name": "vue-viewer",
"version": "1.1.0",
"description": "a simple component for preview image",
"main": "dist/vue-viewer.js",
"repository": {
"type": "git",
"url": "git+https://github.com/yylgit/vue-viewer.git"
},
"homepage": "",
"directories": {
"src": "src/"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"src",
"dist"
],
"keywords": [
"vue",
"vue-viewer",
"vue-image",
"vue-preview image"
],
"devDependencies": {
"babel-core": "^6.1.21",
"babel-loader": "^6.1.0",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-runtime": "^6.3.19",
"bootstrap": "^3.3.5",
"css-loader": "^0.21.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"node-sass": "^3.4.1",
"prismjs": "^1.5.1",
"sass-loader": "^3.1.1",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"vue": "^2.1.7",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.0.0",
"vue-template-compiler": "^2.1.7",
"vue-loader": "^10.0.2",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
},
"scripts": {
"dev": "webpack-dev-server --inline --hot --quiet",
"build-docs": "webpack --progress --hide-modules && NODE_ENV=production webpack --progress --hide-modules",
"build-dist": "webpack --progress --hide-modules --config webpack.build.min.js && webpack --progress --hide-modules --config webpack.build.js",
"build": "npm run build-dist && npm run build-docs",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"author": "yangyiliang",
"license": "MIT"
}