annotate package.json @ 7100:8de1837484e6

less: use upstream's dataTables.bootstrap style instead of jquery.dataTables.css See https://datatables.net/examples/styling/bootstrap.html . - use official dataTables.bootstrap.css and dataTables.bootstrap.js - add datatable less style block to use kallithea font icons - move dataTables related style to this new block to have them in one place - remove style that is obsolete, overrides or gets overriden by dataTables.bootstrap.css
author domruf <dominikruf@gmail.com>
date Sat, 28 Oct 2017 20:22:54 +0200
parents 1969f7dfb6b0
children 6c3bb9a845d7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6953
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
1 {
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
2 "name": "kallithea",
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
3 "private": true,
7057
a9cbc30e19fa less: build custom Bootstrap from bootstrap.less instead of using plain upstream version
domruf <dominikruf@gmail.com>
parents: 7056
diff changeset
4 "dependencies": {
a9cbc30e19fa less: build custom Bootstrap from bootstrap.less instead of using plain upstream version
domruf <dominikruf@gmail.com>
parents: 7056
diff changeset
5 "bootstrap": "3.3.7"
a9cbc30e19fa less: build custom Bootstrap from bootstrap.less instead of using plain upstream version
domruf <dominikruf@gmail.com>
parents: 7056
diff changeset
6 },
6953
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
7 "devDependencies": {
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
8 "less": "~2.7",
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
9 "less-plugin-clean-css": "~1.5"
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
10 },
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
11 "scripts": {
7099
1969f7dfb6b0 move package.json to root directory
domruf <dominikruf@gmail.com>
parents: 7082
diff changeset
12 "less": "lessc --relative-urls kallithea/public/less/main.less kallithea/public/css/style.css"
6953
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
13 }
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
14 }