-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@talis/bootstrap-theme",
"version": "3.0.7",
"description": "A theme to make Bootstrap look like Talis",
"author": "[email protected]",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/talis/bootstrap-theme.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"scss"
],
"bugs": {
"url": "https://github.com/talis/bootstrap-theme/issues"
},
"homepage": "https://github.com/talis/bootstrap-theme#readme",
"scripts": {
"build": "npm-run-all build:*",
"build:css": "sass scss/:docs/assets/css/ --style=compressed --load-path=node_modules --source-map",
"build:eleventy": "eleventy",
"css": "npm-run-all css-compile css-prefix",
"css-compile": "sass scss/:docs/assets/css/ --style=compressed --load-path=node_modules --source-map",
"css-lint": "stylelint scss/",
"css-prefix": "postcss --replace docs/assets/css/talis.css --use autoprefixer --map",
"css-purge": "purgecss --keyframes --css docs/assets/css/talis.css --content docs/index.html \"node_modules/bootstrap/js/dist/{util,modal}.js\" --output docs/assets/css/",
"format:stylelint": "stylelint scss/ --fix",
"prepare": "husky install",
"publish:githubpages": "gh-pages --dist docs",
"release": "standard-version",
"server": "serve docs --listen 3000",
"start": "npm-run-all --parallel build:css watch:*",
"test": "npm run css-lint && npm run css",
"watch": "nodemon -e html,scss -x \"npm run css\"",
"watch:eleventy": "eleventy --serve",
"watch:sass": "sass scss/:docs/assets/css/ --style=compressed --load-path=node_modules --source-map --watch"
},
"peerDependencies": {
"bootstrap": "5.2.2",
"popper.js": "1.16.1"
},
"devDependencies": {
"@11ty/eleventy": "2.0.1",
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"autoprefixer": "10.4.14",
"gh-pages": "6.1.1",
"husky": "8.0.3",
"lint-staged": "13.2.1",
"nodemon": "2.0.22",
"npm-run-all": "4.1.5",
"postcss": "8.4.23",
"postcss-cli": "10.1.0",
"prettier": "2.8.8",
"purgecss": "5.0.0",
"sass": "1.62.0",
"serve": "14.2.0",
"standard-version": "9.5.0",
"stylelint": "16.2.1",
"stylelint-config-standard": "36.0.0"
},
"browserslist": [
"last 2 versions"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}