-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.82 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
{
"name": "bootlight",
"version": "1.0.0",
"description": "bootlight UI for developing responsive, mobile first projects on the web.",
"style": "dist/css/bootlight.css",
"browser": "dist/js/bootlight.js",
"sass": "scss/bootlight.scss",
"main": "index.js",
"scripts": {
"sass": "sass --watch scss/bootlight.scss dist/css/bootlight.css",
"tsc": "tsc --watch",
"stylelint": "npx stylelint \"**/*.scss\"",
"terser": "terser dist/js/bootlight.js -o dist/js/bootlight.min.js --source-map",
"build": "sass scss/bootlight.scss dist/css/bootlight.min.css --style compressed & terser dist/js/bootlight.js & terser dist/js/bootlight.js -o dist/js/bootlight.min.js --source-map",
"star": "npx stylelint \"**/*.scss\" & sass --watch scss/bootlight.scss dist/css/bootlight.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corpjorge/bootlight.git"
},
"keywords": [
"css",
"sass",
"bootstrap 5.1",
"dashboard",
"responsive",
"front-end",
"web",
"UI",
"User interface",
"theme",
"template",
"responsive bootstrap dashboard",
"html dashboard",
"html css dashboard",
"web dashboard"
],
"author": "corpjorge",
"contributors": [
"SuperFluo S.A.S"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/corpjorge/bootlight/issues"
},
"homepage": "https://github.com/corpjorge/bootlight#readme",
"devDependencies": {
"prettier": "2.5.1",
"sass": "^1.49.0",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "^4.5.5",
"terser": "^5.10.0"
},
"dependencies": {
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.7.2"
}
}