This repository has been archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.55 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
{
"name": "differs",
"description": "Differs is not just another CSS framework, it's different. It focuses on 3 important words with \"ity\" suffixes: simplicity, readability, flexibility.",
"version": "0.1.0",
"private": true,
"main": "src/differs.scss",
"license": "MIT",
"homepage": "https://github.com/dvlden/differs#readme",
"bugs": "https://github.com/dvlden/differs/issues",
"repository": {
"type": "git",
"url": "https://github.com/dvlden/differs.git"
},
"author": {
"name": "Nenad Novaković",
"email": "n.dvlden@gmail.com",
"url": "https://github.com/dvlden"
},
"keywords": [
"differs",
"framework",
"css",
"sass",
"scss"
],
"scripts": {
"clean": "rimraf dist",
"lint": "stylelint --custom-syntax=postcss-scss \"src/**/**.scss\"",
"compile": "sass --style=expanded --source-map src/differs.scss dist/differs.css",
"prefix": "postcss dist/differs.css --use=autoprefixer --map=false --output=dist/differs.css",
"minify": "cleancss -O1 --source-map --source-map-inline-sources --output dist/differs.min.css dist/differs.css",
"dev": "pnpm run compile --watch",
"build": "pnpm run clean && pnpm run lint && pnpm run compile && pnpm run prefix && pnpm run minify"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"clean-css-cli": "^5.6.2",
"postcss": "^8.4.23",
"postcss-cli": "^10.1.0",
"postcss-scss": "^4.0.6",
"rimraf": "^5.0.0",
"sass": "^1.62.1",
"stylelint": "^15.6.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.0.0"
}
}