This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
forked from AccentDesign/karma_sphinx_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.42 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
{
"name": "sphinx-bulma",
"version": "0.1.3",
"description": "A Sphinx theme using Bulma",
"author": {
"name": "Augusto Goulart",
"email": "[email protected]",
"url": "https://oagoulart.github.io"
},
"license": "MIT",
"keywords": [
"sphinx",
"theme"
],
"repository": {
"type": "git",
"url": "https://github.com/oAGoulart/sphinx-bulma"
},
"bugs": {
"url": "https://github.com/oAGoulart/sphinx-bulma/issues"
},
"scripts": {
"docs-build": "sphinx-build docs docs/_build",
"css": "npm-run-all css-compile* --sequential css-minify*",
"css-compile": "sass --load-path node_modules/bulma --load-path scss/fontello/css scss/theme.scss src/sphinx-bulma/static/css/theme.css",
"css-minify": "cleancss -o src/sphinx-bulma/static/css/theme.min.css --input-source-map src/sphinx-bulma/static/css/theme.css.map src/sphinx-bulma/static/css/theme.css",
"fontello-install": "fontello-cli install --config scss/fontello/config.json --css scss/fontello/css --font scss/fontello/font",
"fontello-web": "fontello-cli open --config scss/fontello/config.json",
"watch-css": "nodemon --ignore dist/ -e scss -x \"npm run css\""
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"bulma": "^0.9.4",
"clean-css-cli": "^5.6.2",
"copyfiles": "^2.4.1",
"fontello-cli": "^0.6.2",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.2",
"sass": "^1.63.6"
}
}