-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"name": "itscss",
"version": "1.5.0",
"description": "SCSS starter boilerplate based on the ITCSS pattern",
"scripts": {
"sass": "node-sass index.scss main.css",
"postcss": "postcss main.css -o main.css -c postcss.config.js",
"build": "yarn sass && yarn postcss",
"deploy": "cp main.css demo/main.css"
},
"keywords": [
"SCSS",
"PostCSS",
"SCSS Boilerplate",
"ITCSS"
],
"author": "Atanas Atanasov <[email protected]> (https://atanas.info)",
"repository": "https://github.com/scriptex/itscss",
"bugs": {
"url": "https://github.com/scriptex/itscss/issues",
"email": "[email protected]"
},
"license": "MIT",
"main": "index.scss",
"style": "index.scss",
"dependencies": {},
"devDependencies": {
"autoprefixer": "10.2.4",
"browserslist": "4.16.3",
"node-sass": "5.0.0",
"postcss": "8.2.4",
"postcss-cli": "8.3.1",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-normalize": "9.0.0",
"postcss-utilities": "0.8.4"
},
"peerDependencies": {
"autoprefixer": ">=10.0.0",
"node-sass": ">=5.0.0",
"postcss": ">=8.1.10",
"postcss-cli": ">=8.3.0",
"postcss-flexbugs-fixes": ">=5.0.2",
"postcss-normalize": ">=9.0.0",
"postcss-utilities": ">=0.8.4"
}
}