-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.94 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.94 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": "@talisdev/bootstrap-theme",
"repository": {
"type": "git",
"url": "git+https://github.com/techfromsage/bootstrap-theme.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"private": false,
"version": "3.1.0",
"description": "A theme to make Bootstrap look like Talis",
"license": "ISC",
"files": [
"scss"
],
"bugs": {
"url": "https://github.com/techfromsage/bootstrap-theme/issues"
},
"homepage": "https://github.com/techfromsage/bootstrap-theme#readme",
"scripts": {
"build": "npm-run-all build:*",
"build:assets": "mkdir -p docs/assets && cp -r assets/* docs/assets/",
"build:css": "sass scss/:docs/assets/css/ --style=compressed --load-path=node_modules --source-map",
"build:eleventy": "eleventy",
"format": "npm-run-all format:*",
"format:prettier": "prettier --write .",
"format:stylelint": "stylelint scss/ --fix",
"lint": "npm-run-all lint:*",
"lint:prettier": "prettier --check .",
"lint:stylelint": "stylelint scss/",
"prepare": "husky",
"publish:githubpages": "gh-pages --dist docs",
"release": "standard-version",
"server": "serve docs --listen 3000",
"start": "npm-run-all --parallel build:css watch:*",
"watch": "nodemon -e html,scss -x \"npm run build:css\"",
"watch:eleventy": "eleventy --serve",
"watch:sass": "npm run build:css -- --watch"
},
"peerDependencies": {
"bootstrap": "^5.2.0"
},
"devDependencies": {
"@11ty/eleventy": "3.1.2",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"bootstrap": "5.2.2",
"gh-pages": "6.3.0",
"husky": "9.1.7",
"nodemon": "3.1.10",
"npm-run-all2": "8.0.4",
"prettier": "3.6.2",
"sass": "1.91.0",
"semantic-release": "24.2.7",
"serve": "14.2.4",
"stylelint": "16.23.1",
"stylelint-config-standard": "36.0.1"
},
"browserslist": [
"last 2 versions"
]
}