-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "featured-content-manager",
"version": "0.1.1",
"author": "Jesper Nilsson",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/klandestino/featured-content-manager.git"
},
"devDependencies": {
"copy-files-from-to": "^3.12.0",
"po2json": "^1.0.0-alpha",
"sass": "^1.83.0",
"whatwg-fetch": "^2.0.3"
},
"dependencies": {
"sortablejs": "^1.15.6"
},
"scripts": {
"build": "sass assets/scss/customizer.scss dist/css/customizer.css --style compressed; copy-files-from-to"
},
"copyFiles": [
{
"from": "assets/js/customizer.js",
"to": "dist/js/customizer.js"
},
{
"from": "node_modules/sortablejs/Sortable.min.js",
"to": "dist/js/Sortable.min.js"
},
{
"from": "node_modules/whatwg-fetch/fetch.js",
"to": "dist/js/fetch.js"
},
{
"from": "assets/images/spinner-2x.gif",
"to": "dist/images/spinner-2x.gif"
}
],
"copyFilesSettings": {
"whenFileExists": "overwrite",
"minifyJs": true,
"minifyJsTerserOptions": {
"compress": {
"sequences": false
},
"mangle": false,
"format": {
"semicolons": false
}
}
}
}