-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
82 lines (82 loc) · 2.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "snapbackup",
"version": "6.7.0",
"description": "The one-click backup utility",
"license": "GPL-3.0",
"type": "module",
"module": "releases/snapbackup.jar",
"repository": {
"type": "git",
"url": "git+https://github.com/snap-backup/snapbackup.git"
},
"homepage": "https://github.com/snap-backup/snapbackup",
"bugs": "https://github.com/snap-backup/snapbackup/issues",
"docs": "https://snapbackup.org/faq",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"backup",
"utility",
"zip",
"internationalization",
"java"
],
"extra": {
"updated": "December 11, 2024",
"jarSize": "233 KB"
},
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"browser": true,
"node": true,
"globals": {
"dna": false,
"libX": false
}
},
"runScriptsConfig": {
"clean": [
"rimraf website-target"
],
"lint": [
"jshint . --exclude-path .gitignore"
],
"build": [
"replacer website/root website-target/1-dev",
"copy-file src/resources/snap-backup-user-guide.html --folder website-target/1-dev",
"copy-folder src/resources/graphics/application --ext=.png website-target/1-dev/graphics/flags --summary",
"copy-folder website/graphics --ext=.png,.svg website-target/1-dev/graphics --summary",
"lessc website/snap-backup.less website-target/1-dev/style.css",
"uglifyjs website/snap-backup.js --output website-target/1-dev/app.min.js",
"copy-folder website-target/1-dev website-target/2-stg --summary",
"add-dist-header website-target/1-dev website-target/2-stg",
"rev-web-assets website-target/2-stg website-target/3-rev --meta-content-base=https://snapbackup.org"
]
},
"scripts": {
"pretest": "run-scripts clean lint build",
"test": "html-validator website-target/1-dev",
"interactive": "browser-sync . --startPath website-target/1-dev --files website-target"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "~6.7",
"add-dist-header": "~1.4",
"browser-sync": "~3.0",
"copy-file-util": "~1.2",
"copy-folder-util": "~1.1",
"dna-engine": "~3.2",
"hamburger-menu": "~0.6",
"jshint": "~2.13",
"less": "~4.2",
"replacer-util": "~1.3",
"rev-web-assets": "~1.4",
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"uglify-js": "~3.19",
"w3c-html-validator": "~1.8",
"web-ignition": "~2.2"
}
}