-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "supply",
"version": "1.1.1",
"description": "Supply, an e-commere theme for Gumroad, built with Jekyll",
"main": "index.html",
"repository": {
"type": "git",
"url": "https://github.com/YJPL/supply/"
},
"keywords": [
"css",
"e-commerce",
"Jekyll",
"Gumroad",
"oocss",
"supply"
],
"author": "YJPL",
"license": "MIT",
"bugs": {
"url": "https://github.com/YJPL/supply/issues"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.1.2",
"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/sup-tachyons.css > assets/css/sup-tachyons.css",
"minify:css": "postcss assets/css/sup-tachyons.css > assets/css/sup-tachyons.min.css --use cssnano"
}
}