-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.75 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
{
"name": "motionsplan.dk",
"version": "1.0.0",
"description": "Official site for motionpslan.dk.",
"repository": {
"type": "git",
"url": "git://github.com/motionsplan/motionsplan-dk-jekyll.git"
},
"keywords": [
"jekyll",
"gulp",
"netlify"
],
"author": "Lars Olesen",
"license": "MIT",
"bugs": {
"url": "https://github.com/motionsplan/motionsplan-dk-jekyll/issues"
},
"dependencies": {
"glob": "^7.0",
"gulp": "^4.0",
"gulp-concat": "^2.6",
"gulp-empty": "^0.1",
"gulp-filter": "^5.1",
"gulp-if": "^2.0",
"gulp-imagemin": "^8.0",
"gulp-newer": "^1.4",
"gulp-notify": "^4.0",
"gulp-responsive": "2.12",
"gulp-size": "^3.0",
"image-map-resizer": "^1.0"
},
"devDependencies": {
"browserify": "^16.5",
"gray-matter": "^4.0",
"js-yaml": "^4.1",
"minipass": "2.7.0",
"mocha": "^9.2",
"puppeteer": "^8.0",
"queue": "^6.0",
"sharp": "^0.33.5",
"tinify": "^1.6",
"uglify-js": "^3.13",
"uglifyify": "^5.0.2",
"unicode-encode": "^1.4",
"watchify": "^4.0",
"wilks-calculator": "^1.2"
},
"scripts": {
"test": "bundle exec mocha src/test/*.*",
"test:html": "bundle exec htmlproofer --only-4xx --assume-extension \".html\" --ignore-urls \"/bjsm.bmj.com/, /mademistakes.com/\" --ignore-status-codes \"400,403,409,429\" --allow-hash-href --ignore-empty-alt _site/",
"start": "bundle exec jekyll server --port 4040 --incremental",
"lsi": "bundle exec jekyll server --port 4040 --incremental --lsi",
"draft": "bundle exec jekyll server --port 4040 --incremental --drafts",
"watch:js": "onchange \"assets/js/**/*.js\" -e \"assets/js/main.min.js\" -- npm run build:js",
"build:js": "npm run uglify",
"watch": "watchify src/js/app.bundle.js -o assets/js/bundle.js",
"build": "browserify src/js/app.bundle.js -g uglifyify -o assets/js/bundle.js",
"uglify": "bundle exec uglifyjs assets/js/vendor/jquery/jquery-3.6.0.js assets/js/plugins/jquery.fitvids.js assets/js/plugins/jquery.greedy-navigation.js assets/js/plugins/jquery.magnific-popup.js assets/js/plugins/jquery.ba-throttle-debounce.js assets/js/plugins/smooth-scroll.js assets/js/plugins/gumshoe.js assets/js/_main.js -c -m -o assets/js/main.min.js",
"add-banner": "node _scripts/banner.js",
"generate-image": "node _scripts/generate-image.js",
"og-image": "npm run generate-image -- type:og",
"og-images": "npm run generate-image -- type:og path:./_posts/",
"pinterest-image": "npm run generate-image -- type:pinterest",
"pinterest-images": "npm run generate-image -- type:pinterest path:./_posts/",
"instagram-image": "npm run generate-image -- type:instagram",
"instagram-images": "npm run generate-image -- type:instagram path:./_posts/"
}
}