-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
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
{
"name": "litecore",
"title": "LiteCore",
"description": "Lightweight website core framework built with PHP, jQuery and HTML.",
"version": "1.0.0",
"author": {
"name": "T. Almroth",
"url": "https://litecore.dev/"
},
"license": "CC-BY-ND-4.0",
"homepage": "https://www.litecore.dev/",
"download": "https://www.litecore.dev/download",
"repository": {
"type": "git",
"url": "git://github.com/litecore/framework.git"
},
"bugs": {
"url": "https://github.com/litecart/litecore/issues"
},
"devDependencies": {
"@sequencemedia/gulp-clean-css": "^1.0.251",
"@sequencemedia/gulp-sourcemaps": "^1.0.265",
"gulp": "^5.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-fetch": "^1.0.1",
"gulp-header": "^2.0.9",
"gulp-less": "^5.0.0",
"gulp-phplint": "^0.9.0",
"gulp-rename": "^2.1.0",
"gulp-replace": "^1.1.4",
"gulp-sass": "^6.0.1",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"phplint": "^2.0.5",
"sass": "^1.89.2"
},
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"iconly": "gulp iconly && gulp less-framework",
"archive": "git archive --format=zip --output latest.zip",
"build": "gulp build",
"phplint": "gulp phplint",
"test": "gulp test",
"uglify": "gulp replace",
"watch": "gulp watch",
"update": "ncu -u && npm install",
"dependencies": "npm list --depth=1",
"dedupe": "npm dedupe"
}
}