-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.64 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
74
75
76
77
78
79
80
81
82
83
{
"name": "indigo-layout",
"version": "1.10.16",
"description": "Basic styles and components set for building user interfaces.",
"main": "dist/js/main.js",
"module": "src/js/plugin.js",
"scripts": {
"start": "npm run watch",
"watch": "cross-env NODE_ENV=development BROWSERSLIST_ENV=modern gulp",
"watch:legacy": "cross-env NODE_ENV=development BROWSERSLIST_ENV=legacy gulp",
"watch:css": "cross-env NODE_ENV=development BROWSERSLIST_ENV=legacy gulp watch-css",
"build": "npm run build:modern && npm run build:legacy",
"build:modern": "cross-env NODE_ENV=production cross-env BROWSERSLIST_ENV=modern gulp",
"build:legacy": "cross-env NODE_ENV=production cross-env BROWSERSLIST_ENV=legacy rollup -c"
},
"repository": {
"type": "git",
"url": "[email protected]:awes-io/indigo-layout.git"
},
"keywords": [
"vue",
"layout",
"styles",
"admin",
"dashboard",
"ui",
"ui interface",
"awes.io"
],
"files": [
"dist/css/main.css",
"dist/js/main.js",
"dist/js/main.legacy.js",
"dist/fonts/icons.eot",
"dist/fonts/icons.ttf",
"dist/fonts/icons.woff"
],
"awes-files": [
"css/main.css",
"js/main.js",
"js/main.legacy.js",
"fonts/icons.eot",
"fonts/icons.ttf",
"fonts/icons.woff"
],
"author": "Awescode GmbH",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"autoprefixer": "^9.4.5",
"browser-sync": "^2.26.3",
"cross-env": "^5.2.0",
"cssnano": "^4.1.8",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-consolidate": "^0.2.0",
"gulp-iconfont": "^10.0.2",
"gulp-inject-string": "^1.1.2",
"gulp-noop": "^1.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-pretty-html": "^2.0.9",
"gulp-pug": "^4.0.1",
"gulp-rollup": "^2.16.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-stylus": "^2.7.0",
"nib": "^1.1.2",
"postcss-import": "^12.0.1",
"pug": "^2.0.3",
"rollup": "^0.68.2",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-license": "^0.7.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^1.6.3",
"rollup-plugin-terser": "^4.0.2",
"rollup-plugin-vue": "^4.6.1",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {}
}