-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "gralig",
"version": "1.1.1",
"description": "A clean, grayish CSS library",
"main": "dist/gralig.css",
"targets": {
"main": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/erenesto/gralig.git"
},
"bugs": {
"url": "https://github.com/erenesto/gralig/issues"
},
"author": {
"name": "Eren Guldas",
"email": "erenguldas@gmail.com"
},
"homepage": "https://gralig.com",
"license": "MIT",
"keywords": [
"clean design",
"clean css",
"css",
"css library",
"gray",
"grayish",
"pure",
"simplistic",
"frontend",
"ui",
"minimal"
],
"scripts": {
"start": "run-p clean:dev serve",
"serve": "parcel examples/index.html --dist-dir dev --open --no-cache",
"build": "run-s test clean parcel:build minify",
"parcel:build": "parcel build --dist-dir dist scss/gralig.scss --no-optimize --no-cache",
"clean": "rimraf dist/*",
"clean:dev": "rimraf dev/*",
"minify": "cleancss -o dist/gralig.min.css dist/gralig.css",
"lint:scss": "stylelint -s --fix --formatter=verbose 'scss/**/*.scss'",
"test": "run-s lint:scss"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.8.2",
"autoprefixer": "^10.4.13",
"clean-css-cli": "^5.6.1",
"css-loader": "^6.7.3",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.2",
"patch-package": "^6.5.0",
"postcss": "^8.4.20",
"postcss-cli": "^9.1.0",
"postcss-preset-env": "^7.8.3",
"postcss-safe-parser": "^6.0.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-declaration-block-no-ignored-properties": "^2.6.0",
"stylelint-declaration-strict-value": "^1.9.1",
"stylelint-order": "^5.0.0"
},
"files": [
"dist",
"scss",
"README.md"
],
"browserslist": "> 0.5%, last 2 versions, not dead",
"prettier": {
"printWidth": 100
}
}