-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "mol-normalize",
"version": "2.0.1",
"description": "small normalize and customize file with sass preprocessor for css",
"scripts": {
"dev": "concurrently 'npm run reload' 'npm run sass' ",
"sass": "sass --watch scss/n.scss:docs/n.css --style expanded",
"reload": "reload --dir docs -b",
"build": "sass scss/n.scss:mol/n.min.css --style compressed"
},
"nodemonConfig": {
"watch": [
"scss/*",
"docs/*"
],
"ext": "js,css,html"
},
"files": [
"mol",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flkt-crnpio/mol-normalize"
},
"author": "flkt.crnpio@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/flkt-crnpio/mol-normalize/issues"
},
"homepage": "https://flkt-crnpio.github.io/mol-normalize/",
"main": "mol/n.min.css",
"keywords": [
"normalize",
"css",
"scss",
"sass",
"flkt"
],
"devDependencies": {
"sass": "^1.83.0",
"concurrently": "^9.1.1",
"reload": "^3.3.0"
}
}