-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "alternate",
"version": "1.3.1",
"description": "alternate theme built with Jekyll and Tachyons",
"main": "index.html",
"repository": {
"type": "git",
"url": "https://github.com/YJPL/alternatyves/"
},
"keywords": [
"css",
"portfolio",
"oocss",
"alternatyves",
"illustration",
"design"
],
"author": "YJPL",
"license": "MIT",
"bugs": {
"url": "https://github.com/YJPL/alternate/issues"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"postcss": "^8.4.48",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.1.1",
"uglify-js": "^3.19.3"
},
"contributors": [
{
"name": "YJPL",
"email": ""
}
],
"scripts": {
"start": "npm run build && npm run serve:jekyll",
"serve:jekyll": "JEKYLL_ENV=development bundle exec jekyll serve --livereload --open-url http://localhost:4000/",
"minify-js": "uglifyjs assets/js/*.js -o assets/js/script.min.js",
"build": "npm run build:css && npm run minify:css",
"build:css": "postcss src/alt-tachyons.css > css/alt-tachyons.css",
"minify:css": "postcss css/alt-tachyons.css > css/alt-tachyons.min.css --use cssnano"
},
"dependencies": {
"sharp": "^0.33.5"
}
}