-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.09 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ivoryui-ivory",
"description": "A modern CSS framework to build your web pages faster and easier.",
"version": "7.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/IVORY-UI/ivory.git"
},
"keywords": [
"CSS",
"components",
"grid",
"responsive",
"scss",
"css-framework",
"grid-layout",
"scss-mixins",
"scss-framework",
"design-system",
"utility-first",
"modern-css"
],
"main": "dist/ivory.css",
"style": "dist/ivory.min.css",
"scripts": {
"clean": "rimraf dist",
"build:styles": "sass src/ivory.scss dist/ivory.css --style=expanded",
"build:styles:min": "sass src/ivory.scss dist/ivory.min.css --style=compressed",
"build:utils": "sass src/utils.scss dist/utils.css --style=expanded",
"build:utils:min": "sass src/utils.scss dist/utils.min.css --style=compressed",
"build:components": "sass src/components.scss dist/components.css --style=expanded",
"build:components:min": "sass src/components.scss dist/components.min.css --style=compressed",
"build": "npm run clean && npm run build:styles && npm run build:styles:min && npm run build:utils && npm run build:utils:min && npm run build:components && npm run build:components:min && npm run copy:files",
"copy:files": "cp package.json dist/ && cp README.md dist/ && cp LICENSE dist/",
"dev": "sass --watch src:dist",
"lint": "stylelint \"src/**/*.scss\"",
"lint:fix": "stylelint \"src/**/*.scss\" --fix",
"test": "npm run lint",
"prepublishOnly": "npm run build",
"publish:ivory": "npm publish dist"
},
"dependencies": {},
"devDependencies": {
"sass": "^1.69.0",
"rimraf": "^5.0.5",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-scss": "^5.3.1",
"postcss": "^8.4.31",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.1",
"esbuild": "^0.25.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"author": {
"name": "Lakshmikanth Vallampati",
"url": "https://github.com/kanthvallampati/"
},
"license": "MIT"
}