forked from vufind-org/vufind
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (48 loc) · 1.5 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
{
"name": "vufind",
"version": "9.0.3",
"description": "Dev tools to handle css preprocessing, js magic, and compression",
"repository": {
"type": "git",
"url": "http://github.com/vufind-org/vufind"
},
"bugs": {
"url": "https://vufind.org/jira"
},
"scripts": {
"build": "npm run build:css",
"watch": "npm run watch:css",
"build-dev": "npm run build-dev:css",
"watch-dev": "npm run watch-dev:css",
"build:css": "npm run build:less",
"watch:css": "npm run watch:less",
"build-dev:css": "npm run build-dev:less",
"watch-dev:css": "npm run watch-dev:less",
"build:less": "grunt less && npm run lessToSass",
"watch:less": "grunt watch:less",
"build-dev:less": "grunt lessdev && npm run lessToSass",
"watch-dev:less": "grunt watch:lessdev",
"build:scss": "grunt scss",
"check:scss": "grunt check:scss",
"watch:scss": "grunt watch:scss",
"lessToSass": "grunt lessToSass",
"watch:lessToSass": "grunt watch:lessToSass"
},
"dependencies": {
"autocomplete.js": "vufind-org/autocomplete.js#v2.1.7",
"grunt": "^1.0.4",
"grunt-contrib-less": "^2.0.0",
"grunt-less-to-sass": "duvillierA/grunt-less-to-sass#0.0.11",
"grunt-sass": "^3.1.0",
"jit-grunt": "^0.10.0",
"node-sass": "^7.0.1"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-plugin-no-jquery": "^2.7.0",
"grunt-contrib-watch": "^1.1.0",
"jshint": "^2.13.4",
"jstree": "3.3.15",
"vanilla-cookieconsent": "3.0.0-rc.16"
}
}