-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 921 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 921 Bytes
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
{
"name": "inyoka",
"title": "Inyoka theme",
"version": "1.52.8",
"description": "Inyoka Theme",
"main": "index.js",
"scripts": {
"gzip": "find inyoka/static \\( -name *.ttf -o -name *.js -o -name *.css -o -name *.ico -o -name *.svg \\) -exec gzip -9kf {} \\;",
"build-css": "find inyoka/static -iname '*.less' -print -exec sh -c 'f={}; lessc --compress ${f} ${f%less}css' \\;",
"all": "npm run build-css && npm run gzip",
"watch": "while true; do npm run all; inotifywait --quiet --recursive --event modify inyoka/static; done"
},
"repository": {
"type": "git",
"url": "https://github.com/inyokaproject/inyoka"
},
"author": "Inyoka Team",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/inyokaproject/inyoka/issues"
},
"homepage": "https://inyokaproject.org",
"engines": {
"node": ">= 4.0"
},
"dependencies": {
"less": "^4.1.1"
}
}