-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.6 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
47
{
"name": "@dvlden/slope",
"description": "Sass mixin that helps you build sloped section edges with a consistent angle.",
"version": "1.0.0",
"packageManager": "pnpm@7.11.0",
"main": "src/index.scss",
"files": [
"src"
],
"license": "MIT",
"homepage": "https://github.com/dvlden/slope#readme",
"bugs": "https://github.com/dvlden/slope/issues",
"repository": {
"type": "git",
"url": "https://github.com/dvlden/slope.git"
},
"author": {
"name": "Nenad Novaković",
"email": "n.dvlden@gmail.com",
"url": "https://github.com/dvlden"
},
"keywords": [
"slope",
"angle",
"edge",
"section"
],
"browserslist": [
"last 2 versions"
],
"scripts": {
"autoprefix:vertical": "postcss examples/vertical/dist/app.css -u autoprefixer -o examples/vertical/dist/app.css",
"sass:vertical": "sass -s expanded examples/vertical/src/app.scss examples/vertical/dist/app.css",
"build:vertical": "rimraf examples/vertical/dist && npm run sass:vertical && npm run autoprefix:vertical",
"autoprefix:horizontal": "postcss examples/horizontal/dist/app.css -u autoprefixer -o examples/horizontal/dist/app.css",
"sass:horizontal": "sass -s expanded examples/horizontal/src/app.scss examples/horizontal/dist/app.css",
"build:horizontal": "rimraf examples/horizontal/dist && npm run sass:horizontal && npm run autoprefix:horizontal",
"build": "npm run build:vertical && npm run build:horizontal"
},
"devDependencies": {
"autoprefixer": "^10.3.6",
"postcss": "^8.3.8",
"postcss-cli": "^9.0.1",
"rimraf": "^3.0.2",
"sass": "^1.42.1"
}
}