-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.19 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
{
"name": "miko",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && dotnet watch --project ./docs/Miko.Docs run",
"publish": "npm run build && dotnet pack src/components/Miko.csproj -c Release -o .",
"build": "npm run build:ts && npm run build:css",
"build:ts": "gulp --gulpfile ./gulpfile.js",
"build:css": "npm run css.sass && npm run css.minify",
"css.sass": "sass src/css:./dist",
"css.minify": "cleancss -O2 -o ./src/components/wwwroot/css/miko.css ./dist/ionic.bundle.css",
"generate:css": "node generator.js",
"generate:component": "hygen generator component component"
},
"author": "Chaldea",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.5.2",
"clean-css-cli": "^5.3.3",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"hygen": "^6.2.8",
"sass": "^1.37.5",
"tsify": "^4.0.2",
"typescript": "^3.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}