-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 3.4 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "paradise",
"version": "0.7.4",
"description": "Paradise Photo Gallery",
"license": "GPL-3.0",
"type": "module",
"browser": "website/index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/paradise.git"
},
"homepage": "https://github.com/center-key/paradise",
"bugs": "https://github.com/center-key/paradise/issues",
"docs": "https://centerkey.com/paradise",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"artwork",
"image-gallery",
"images",
"javascript",
"php",
"paradise",
"photo-gallery",
"photos",
"portfolio",
"gallery"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"node": true,
"browser": true,
"globals": {
"admin": true,
"gallery": true,
"libX": false,
"dna": false
}
},
"runScriptsConfig": {
"clean": [
"rimraf build releases/paradise-v*.zip"
],
"lint": [
"jshint . --exclude-path .gitignore"
],
"build": [
"lessc src/gallery/gallery.less build/1-dev/gallery/paradise.css",
"lessc src/gallery/console/admin.less build/1-dev/gallery/console/paradise-console.css",
"make-dir build/2-min/gallery/console",
"csso build/1-dev/gallery/paradise.css --output build/2-min/gallery/paradise.min.css",
"csso build/1-dev/gallery/console/paradise-console.css --output build/2-min/gallery/console/paradise-console.min.css",
"uglifyjs src/gallery/js/*.js --output build/2-min/gallery/paradise.min.js",
"uglifyjs src/gallery/console/js/*.js --output build/2-min/gallery/console/paradise-console.min.js",
"replacer src/gallery --ext=.php build/3-stage/gallery",
"add-dist-header build/2-min/gallery build/3-stage/gallery",
"add-dist-header build/2-min/gallery/console build/3-stage/gallery/console",
"copy-file src/gallery/image/.htaccess --folder build/3-stage/gallery/image",
"rev-web-assets build/3-stage/gallery build/4-rev/gallery",
"copy-file LICENSE.txt --folder build/4-rev/gallery",
"cd build/4-rev && bestzip paradise.zip gallery/*"
],
"release": [
"copy-file build/4-rev/paradise.zip releases/previous/paradise-v{{package.version}}.zip",
"copy-file build/4-rev/paradise.zip releases/paradise-v{{package.version}}.zip"
]
},
"scripts": {
"pretest": "run-scripts clean lint build release",
"test": "html-validator website"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "~6.5",
"add-dist-header": "~1.4",
"bestzip": "~2.2",
"copy-file-util": "~1.2",
"copy-folder-util": "~1.1",
"csso-cli": "~4.0",
"dna-engine": "~3.2",
"dropzone": "6.0.0-beta.2",
"fetch-json": "~3.3",
"jshint": "~2.13",
"less": "~4.2",
"magnific-popup": "~1.2",
"make-dir-cli": "~4.0",
"replacer-util": "~1.3",
"rev-web-assets": "~1.3",
"rimraf": "~5.0",
"run-scripts-util": "~1.2",
"uglify-js": "~3.18",
"w3c-html-validator": "~1.8",
"web-ignition": "~2.2"
}
}