-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "kotton-css",
"version": "1.0.1",
"description": "한글과 잘 어울리는 classless 스타일 라이브러리",
"main": "src/kotton-style.scss",
"module": "./dist/kotton-style.css",
"scripts": {
"clean": "shx rm -rf ./dist ./docs",
"build": "npm-run-all clean build:*",
"build:style": "node-sass --importer=node_modules/node-sass-tilde-importer --output-style compressed -r --output dist src/kotton-style.scss",
"build:html": "parcel build src/index.html --out-dir docs --public-url /kotton-css",
"build:sitemap": "shx cp src/sitemap.xml docs/",
"watch": "npm-run-all -p watch:*",
"watch:html": "parcel -p 3000 src/index.html --out-dir docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloverhearts/kotton-css.git"
},
"keywords": [
"css",
"style",
"korean",
"hangul",
"white",
"black",
"simple"
],
"author": "cloverhearts",
"license": "ISC",
"bugs": {
"url": "https://github.com/cloverhearts/kotton-css/issues"
},
"homepage": "https://cloverhearts.github.io/kotton-css",
"devDependencies": {
"node-sass": "^4.14.1",
"node-sass-tilde-importer": "^1.0.2",
"normalize-scss": "^7.0.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"shx": "^0.3.2"
},
"dependencies": {}
}