forked from dennisreimann/uiengine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.53 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.53 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
{
"name": "@uiengine/ui",
"description": "UIengine user interface.",
"license": "MIT",
"version": "0.19.3",
"author": "Dennis Reimann <mail@dennisreimann.de> (https://dennisreimann.de)",
"homepage": "https://github.com/dennisreimann/uiengine",
"bugs": "https://github.com/dennisreimann/uiengine",
"repository": "dennisreimann/uiengine",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.9.0"
},
"main": "./lib/index.js",
"files": [
"dist",
"lib"
],
"keywords": [
"uiengine"
],
"scripts": {
"clean": "rimraf lib dist static",
"start": "yarn run clean && NODE_ENV=development gulp develop",
"build": "yarn run clean && NODE_ENV=production gulp build",
"lint": "eslint --ext .js,.vue build src test"
},
"dependencies": {
"color": "^3.0.0",
"ejs": "^2.5.9",
"fuse.js": "^3.2.0",
"highlight.js": "^9.12.0",
"htmlescape": "^1.1.1",
"vue": "^2.5.16",
"vue-analytics": "^5.10.4",
"vue-meta": "^1.5.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^8.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"clipboard": "^2.0.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"css-mqpacker": "^6.0.2",
"csswring": "^6.0.3",
"ejs-compiled-loader": "2.2.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-vue": "^4.5.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^6.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-load-plugins": "^1.5.0",
"gulp-plumber": "^1.2.0",
"gulp-postcss": "^7.0.1",
"gulp-stylus": "^2.7.0",
"html-webpack-plugin": "^2.30.1",
"iframe-resizer": "^3.6.1",
"inject-loader": "^3.0.1",
"node-notifier": "^5.2.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.4",
"run-sequence": "^2.2.1",
"stylus-loader": "^3.0.2",
"url-loader": "^1.0.1",
"vue-loader": "^14.2.2",
"vue-loader-options-plugin": "^0.1.1",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-merge": "^4.1.2",
"webpack-stream": "^4.0.3"
},
"peerDependencies": {
"@uiengine/core": "^0.19.2"
},
"browserslist": [
"last 2 versions"
]
}