forked from litecart/litecart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "litecart",
"title": "LiteCart",
"description": "Lightweight e-commerce platform built with PHP, jQuery and HTML.",
"version": "2.5.4",
"author": {
"name": "T. Almroth",
"url": "https://www.litecart.net/"
},
"license": "CC-BY-ND-4.0",
"homepage": "https://www.litecart.net/",
"download": "https://www.litecart.net/download",
"repository": {
"type": "git",
"url": "git://github.com/litecart/litecart.git"
},
"bugs": {
"url": "https://github.com/litecart/litecart/issues"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-dart-sass": "^2.0.1",
"grunt-phplint": "^0.1.0",
"grunt-text-replace": "^0.4.0",
"phplint": "^2.0.5",
"sass": "^1.62.0"
},
"engines": {
"node": ">=19"
},
"scripts": {
"build": "grunt",
"hash": "php .git-hooks/pre-commit.d/calculate_checksums.php",
"less": "grunt less",
"phplint": "grunt phplint",
"test": "grunt test",
"uglify": "grunt replace",
"watch": "grunt watch",
"update": "ncu -u && npm install"
}
}