-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 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
{
"name": "itscss",
"version": "3.1.0",
"description": "SCSS starter boilerplate based on the ITCSS pattern",
"keywords": [
"CSS",
"SCSS",
"SASS",
"ITCSS",
"PostCSS",
"CSS Boilerplate",
"SCSS Boilerplate",
"SASS Boilerplate",
"ITCSS Boilerplate",
"PostCSS Boilerplate",
"CSS Starter Template",
"SCSS Starter Template",
"SASS Starter Template",
"ITCSS Starter Template",
"PostCSS Starter Template"
],
"homepage": "https://itscss.atanas.info",
"bugs": {
"url": "https://github.com/scriptex/itscss/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Atanas Atanasov <[email protected]> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "index.scss",
"style": "index.scss",
"repository": {
"type": "git",
"url": "github:scriptex/itscss"
},
"scripts": {
"copy": "cp main.css demo/main.css",
"sass": "sass index.scss main.css --no-source-map",
"postcss": "postcss main.css -o main.css -c postcss.config.js",
"build": "yarn sass && yarn postcss",
"deploy": "yarn build && yarn copy"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "10.4.20",
"browserslist": "4.24.4",
"postcss": "8.5.1",
"postcss-cli": "11.0.0",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-normalize": "13.0.1",
"postcss-utilities": "0.8.4",
"sass": "1.84.0"
},
"peerDependencies": {
"autoprefixer": ">=10.0.0",
"postcss": ">=8.4.31",
"postcss-cli": ">=8.3.0",
"postcss-flexbugs-fixes": ">=5.0.2",
"postcss-normalize": ">=9.0.0",
"postcss-utilities": ">=0.8.4",
"sass": ">=1.43.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 11",
"not op_mini all"
]
}